interface IAddToCartFuncProps { eventId: string | number; data: any; ticketQuantity: number; enableBillingInfoAutoCreate?: boolean; } export declare const addToCartFunc: ({ eventId, data, ticketQuantity, enableBillingInfoAutoCreate, }: IAddToCartFuncProps) => Promise<{ skip_billing_page: any; event_id: string; hash: string; total: string; hasAddOn: any; } | null>; export {};