import type { User } from '@n8n/db'; import z from 'zod'; import type { ExecutionService } from '../../../executions/execution.service'; import type { Telemetry } from '../../../telemetry'; import type { WorkflowFinderService } from '../../../workflows/workflow-finder.service'; import type { ToolDefinition } from '../mcp.types'; declare const inputSchema: { workflowId: z.ZodOptional; status: z.ZodOptional, "many">>; startedAfter: z.ZodOptional; startedBefore: z.ZodOptional; limit: z.ZodOptional; lastId: z.ZodOptional; }; export declare const createSearchExecutionsTool: (user: User, executionService: ExecutionService, workflowFinderService: WorkflowFinderService, telemetry: Telemetry) => ToolDefinition; export {};