export declare enum TxAction { APPROVAL = 0, MAIN_ACTION = 1, GAS_ESTIMATION = 2 } export type TxErrorType = { rawError: Error; error: string | undefined; txAction: TxAction; }; export declare const getErrorTextFromError: (error: any, txAction: TxAction) => TxErrorType; export declare const errorMapping: Record; //# sourceMappingURL=errorHandler.d.ts.map