export interface AIProvider { name: string; model: string; generate(prompt: string): Promise; generateJSON(prompt: string): Promise; } export declare function createProvider(name: string, model?: string): Promise; export declare function createCachedProvider(name: string, model?: string): Promise; //# sourceMappingURL=index.d.ts.map