import type { MastraMemory } from '../../../memory/memory.js'; import type { StorageThreadType } from '../../../memory/types.js'; import type { Span, SpanType } from '../../../observability/index.js'; import type { RequestContext } from '../../../request-context/index.js'; import type { InnerAgentExecutionOptions } from '../../agent.types.js'; import type { AgentMethodType } from '../../types.js'; import type { AgentCapabilities } from './schema.js'; interface PrepareToolsStepOptions { capabilities: AgentCapabilities; options: InnerAgentExecutionOptions; threadFromArgs?: (Partial & { id: string; }) | undefined; resourceId?: string; runId: string; requestContext: RequestContext; agentSpan?: Span; methodType: AgentMethodType; memory?: MastraMemory; } export declare function createPrepareToolsStep({ capabilities, options, threadFromArgs, resourceId, runId, requestContext, agentSpan, methodType, memory: _memory, }: PrepareToolsStepOptions): import("../../../workflows").Step<"prepare-tools-step", unknown, Record, { convertedTools: Record; }, unknown, unknown, import("../../../workflows").DefaultEngineType, unknown>; export {}; //# sourceMappingURL=prepare-tools-step.d.ts.map