import { ExecutableTool, FromJSONSchema, JSONSchema, ToolInputSchema } from './types'; import * as bedrock from '@aws-sdk/client-bedrock-runtime'; /** * Creates an executable tool. */ export declare const createExecutableTool: >(name: string, description: string, inputSchema: ToolInputSchema, handler: (input: TToolInput) => Promise) => ExecutableTool; //# sourceMappingURL=executable_tool_factory.d.ts.map