/** * Errors thrown by the API client. The HTTP status code and parsed error body * are preserved so MCP tool handlers can return helpful messages to agents. */ export declare class NordicApiError extends Error { status: number; code: string; source?: string; details?: unknown; constructor(params: { status: number; code: string; message: string; source?: string; details?: unknown; }); } export declare function formatError(err: unknown): string; //# sourceMappingURL=errors.d.ts.map