import { McpError } from '@modelcontextprotocol/sdk/types.js'; export interface ErrorDetails { code: string; message: string; details?: unknown; stack?: string; } export declare function mapDomainErrorToMcp(error: Error): McpError; export declare function createErrorDetails(error: Error): ErrorDetails;