import type { AskAIConfig, AskAIRequest, AskAIResponse } from "./types.js";
export declare class AIService {
    private config;
    constructor(config: AskAIConfig);
    private validateConfig;
    private getModel;
    askAI(request: AskAIRequest): Promise<AskAIResponse>;
}
