export declare function llmResponseAnthropic({ prompt, model, apiKey }: {
    prompt: string;
    model?: string;
    apiKey?: string;
}): Promise<string>;
