export interface LLMParams {
    model: string;
    maxTokens?: number;
}
export interface LLM {
    invoke(prompt: string): Promise<string>;
}
export declare const llmModels: string[];
export type LLMModel = (typeof llmModels)[number];
//# sourceMappingURL=base.d.ts.map