import { LLMConfig } from '../types';
export declare class Factory {
    private readonly config;
    constructor(config: LLMConfig);
    create(): Promise<any>;
}
