import type { EvalLlmMockHandler } from 'n8n-core';
interface MockHandlerOptions {
    scenarioHints?: string;
    globalContext?: string;
    nodeHints?: Record<string, string>;
    maxRetries?: number;
}
export declare function createLlmMockHandler(options?: MockHandlerOptions): EvalLlmMockHandler;
export {};
