interface FormattedError { message: string; code?: string; details?: unknown; } /** * Generic error formatter that handles various error formats */ export declare function formatError(error: unknown, fallbackMessage?: string): FormattedError; export {};