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