import { IFoundationModel, GenerationOptions } from '../interfaces/IFoundationModel.js'; /** * Mock foundation model for testing and demonstration * In production, this would be replaced with actual API calls to GPT-4, Claude, etc. */ export declare class MockFoundationModel implements IFoundationModel { private modelName; constructor(modelName?: string); generate(prompt: string, _options?: GenerationOptions): Promise; getModelName(): string; isAvailable(): Promise; } //# sourceMappingURL=MockFoundationModel.d.ts.map