import { ValidateVoucherAPIDto } from "../dto/validate-voucher-api-dto"; import { RedemptionVoucherAPIDto } from "../dto/redemption-voucher.dto"; import { VerifyVoucherDto } from "../dto/redemption-vouchers.dto"; import { ShareCodeDto } from "../dto/voucher-data.dto"; export declare class VoucherSpConnector { static validateApi(validateVoucherAPIDto: ValidateVoucherAPIDto, apiEndPoint: string): Promise | undefined>; static verifyVoucherApi(redemptionVoucherDto: VerifyVoucherDto, apiEndPoint: string): Promise; static redemptionApi(redemptionVoucherAPIDto: RedemptionVoucherAPIDto, apiEndPoint: string): Promise | undefined>; static shareVoucherCodeApi(data: ShareCodeDto, apiEndPoint: string): Promise | undefined>; static getSlugName(serviceProviderKey: string, apiEndPoint: string, serviceProviderEmail: string): Promise; static getServiceProviderKey(serviceProviderEmail: string, apiEndPoint: string): Promise; }