import { LLM, type BaseLLMParams } from "@langchain/core/language_models/llms";
export declare class MockLLM extends LLM {
    static lc_name(): string;
    lc_serializable: boolean;
    _llmType(): string;
    _call(_input: string, _options?: BaseLLMParams): Promise<string>;
}
