/// import { AxiosError } from 'axios'; export interface ITicketResaleContainer { onProcessTicketSuccess: (res: any) => void; onProcessTicketError: (e: AxiosError) => void; onDeclineTicketPurchaseSuccess: (res: any) => void; onDeclineTicketPurchaseError: (e: AxiosError) => void; orderHash?: string; billingPath?: string; defaultRedirection?: boolean; } export declare const TicketResaleContainer: ({ onProcessTicketSuccess, onProcessTicketError, onDeclineTicketPurchaseSuccess, onDeclineTicketPurchaseError, orderHash, billingPath, defaultRedirection, }: ITicketResaleContainer) => JSX.Element;