import { LotteryTicket, PinCode, Promotion, OrderTicket, TopUp, VoucherInfo } from "..";
type Voucher = {
    info: VoucherInfo;
    pin_code: PinCode[];
    topup: TopUp;
    promotion: Promotion[];
    ticket: OrderTicket[];
    lottery_ticket: LotteryTicket[];
};
export type { Voucher };
