interface LLMOptions {
    model?: string;
    temperature?: number;
    max_tokens?: number;
    json_mode?: boolean;
}
export declare class LLMClient {
    private apiKey;
    constructor(apiKey: string);
    ask(query: string, systemPrompt?: string, options?: LLMOptions): Promise<any>;
}
export {};
//# sourceMappingURL=llm.d.ts.map