import { VoucherService } from '~backend/marketing/voucher/voucher.service'; import { Request } from 'express'; import { UserService } from '~backend/user/user.service'; import { ApplyClaimDto } from '../pos-api.interface'; export declare class ClaimController { private readonly voucherService; private readonly userService; private readonly logger; constructor(voucherService: VoucherService, userService: UserService); applyClaim(req: Request, claimId: string, body: ApplyClaimDto): Promise; revertClaim(claimId: string): Promise; /** @deprecated 08/09/2020: use customer dialog auto claim */ verifyClaim(): Promise; /** @deprecated 08/09/2020: use customer dialog auto claim */ getClaimByUser(): Promise; /** @deprecated 08/09/2020: use customer dialog auto claim */ getClaimByIds(): Promise; }