import { type Voucher as BVoucher, type SendVoucherDto, type Member, type PaginationRequest, type PaginatedResult } from "../types/marketing"; export interface Voucher extends BVoucher { sendable: boolean | string; claimable: boolean | string; isMemberReward: boolean; } export declare const marketingApi: { readMembers(pagination: PaginationRequest): Promise>; readMemberByUserId(userId: string): Promise; readVouchers(): Promise; sendVoucher(voucherId: string, payload: SendVoucherDto): Promise; };