export interface AssistResponse { improved_description: string; suggested_type: string; suggested_priority: string; reasoning: string; } export declare class AnthropicAPIError extends Error { readonly statusCode: number; constructor(message: string, statusCode: number); } export declare function callAnthropicAssist(apiKey: string, system: string, userMessage: string): Promise; export declare function parseAssistResponse(text: string): AssistResponse; //# sourceMappingURL=client.d.ts.map