export declare const getCustomerExistsData: (accessHash: string) => Promise; interface IDelegationTicketType { delegationMaxQuantity: number | string; } interface IIssueTicketResponseData { delegationName: string; eventImage: string; eventName: string; ticketTypes: { [key: number]: IDelegationTicketType; }; } interface IIssueTicketResponse { data: { attributes: IIssueTicketResponseData; relationships: Array; type: string; message: string; }; } export interface IDelegationsTicketType { [key: number]: { delegationMaxQuantity: string | number; delegationQuantityIssued: string | number; matrixRecordId: string | number; optionValue: string | number; }; } export interface IDelegationsData { delegationName: string; eventImage: string; eventName: string; ticketTypes: IDelegationsTicketType; tickets: Array; } interface IDelegationsResponse { data: { data: { attributes: IDelegationsData; relationships: Array; type: string; }; }; } export declare const getDelegationTickets: (accessHash: string) => Promise; export declare const issueTicket: (accessHash: string, data: ITicketIssueData) => Promise; export {};