export declare const getEvent: (id: string | number, pk?: string | undefined) => Promise; export declare const getTickets: (eventId: string | number, promoCode: string, pk?: string | undefined) => Promise; export declare const getTimeSlotsByDate: (eventId: string | number, date: string, promoCode?: string | undefined, pk?: string | undefined) => Promise; export declare const getCountries: () => Promise; export declare const getStates: (countryId: string | number) => Promise; export declare const sendRSVPInfo: (eventId: number, data: { data: IRSVPRequestData; }) => Promise; export declare const addToWaitingList: (id: number, data: IWaitingListRequestData) => Promise; export declare const postReferralVisits: (eventId: string, referralId: string) => Promise; export declare const validatePhoneNumber: (phone: string) => Promise;