export declare enum ErrorType { InvalidWallet = "InvalidWallet", GetAccountInfoFailed = "GetAccountInfoFailed" } export declare const ErrorMsgMap: { InvalidWallet: string; GetAccountInfoFailed: string; }; export interface ErrorData { error?: Error; errorType?: ErrorType; } export declare const handleError: (errorData: ErrorData) => void; //# sourceMappingURL=ErrorHandler.d.ts.map