export declare class LLMConfig {
    readonly id: string;
    organizationId: string;
    name: string;
    provider: string;
    model: string;
    apiKey: string;
    parameters: any | null;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
    constructor(id: string, organizationId: string, name: string, provider: string, model: string, apiKey: string, parameters: any | null, isActive: boolean, createdAt: Date, updatedAt: Date);
    updateInfo(provider: string, model: string, apiKey: string, parameters: any | null, isActive: boolean): void;
}
//# sourceMappingURL=LLMConfig.d.ts.map