import type { ToolDefinition } from '../../types/tools.js'; export declare const REPL_TOOL_SCHEMA: ToolDefinition; export interface ReplToolInput { readonly mode: 'eval' | 'history'; readonly runtime?: 'javascript' | 'typescript' | 'python' | 'sql' | 'graphql' | undefined; readonly expression?: string | undefined; readonly bindings?: Record | undefined; } //# sourceMappingURL=schema.d.ts.map