import { IUserEventModel, IFeeCollectionType } from "@nimee/shared-types"; export declare class TicketClient { getTicketById(params: { token: string; eventId: string; accountId: string; ticketId: string; }): Promise; getTicketsByIds(params: { token: string; ticketIds: string[]; eventId: string; accountId: string; }): Promise; getTotalPriceOfTicketByIds(params: { token: string; ticketIds: string[]; }): Promise; static extractTickets(arr: IUserEventModel[]): string[]; getTicketsOfEventUnsecured(params: { eventId: string; accountId: string; nimiFeeType: IFeeCollectionType; }): Promise; }