declare class ExecutionError extends Error { private readonly _message; private readonly _context; private readonly _errorType; private readonly _traceId; constructor(params?: { message?: string; context?: any; errorType?: string; traceId?: string; }); get message(): string; get context(): any; get errorType(): string; get traceId(): string; } declare class SignerNotSupportedError extends ExecutionError { constructor(params?: { context?: any; errorType?: string; traceId?: string; }); } declare class OrderPathRequiredForIntentsError extends ExecutionError { constructor(params?: { context?: any; errorType?: string; traceId?: string; }); } declare class SessionChainRequiredError extends ExecutionError { constructor(params?: { context?: any; errorType?: string; traceId?: string; }); } declare class IntentFailedError extends ExecutionError { constructor(params?: { intentId?: string; context?: any; errorType?: string; traceId?: string; }); } declare class IntentStatusTimeoutError extends ExecutionError { constructor(params?: { context?: any; errorType?: string; traceId?: string; }); } declare class InvalidSourceCallsError extends ExecutionError { constructor(params?: { chainId?: number; context?: any; errorType?: string; traceId?: string; }); } declare class Eip7702InitSignatureRequiredError extends ExecutionError { constructor(params?: { context?: any; errorType?: string; traceId?: string; }); } declare function isExecutionError(error: Error): error is ExecutionError; export { isExecutionError, ExecutionError, Eip7702InitSignatureRequiredError, InvalidSourceCallsError, OrderPathRequiredForIntentsError, SessionChainRequiredError, IntentFailedError, IntentStatusTimeoutError, SignerNotSupportedError, }; //# sourceMappingURL=error.d.ts.map