import type Anthropic from '@anthropic-ai/sdk'; export declare const DEFAULT_ANTHROPIC_PARAMS: { model: string; max_tokens: number; temperature: number; }; export declare const DEFAULT_ANTHROPIC_OPTIONS: { headers: { 'x-api-key': null; authorization: null; }; }; declare function sendPrompt(anthropic: Anthropic, config: { proxyUrl: string; headers?: Record; model?: string; maxTokens?: number; temperature?: number; }, prompt: string, signal?: AbortSignal): Promise>; export default sendPrompt;