import { Request } from 'express'; import { GiftService } from '../services/gift.service'; import { CreateGiftDto } from './dto/create-gift.dto'; import { CreateContributionDto } from './dto/create-contribution.dto'; export declare class GiftController { private readonly giftService; constructor(giftService: GiftService); createGift(req: Request, tenantId: string, dto: CreateGiftDto): Promise; listGifts(tenantId: string): Promise; contribute(tenantId: string, dto: CreateContributionDto): Promise; getGift(req: Request, tenantId: string, id: string): Promise; listContributions(req: Request, tenantId: string, id: string): Promise; } //# sourceMappingURL=gift.controller.d.ts.map