import { CallToolResult } from './types';
export { formatMCPError } from './formatter';
export { ErrorType } from './types';
export type { FormatOptions, CallToolResult } from './types';
export declare const createUserAbortedError: (requestId?: string) => CallToolResult;
export declare const createTimeoutError: (timeoutMs: number | null, requestId?: string) => CallToolResult;
export declare const createNetworkError: (originalError: any, requestId?: string) => CallToolResult;
