import type { ToolDefinition } from '../../types/tools.js'; export declare const QUERY_TOOL_SCHEMA: ToolDefinition; export interface QueryToolInput { readonly mode: 'ask' | 'list' | 'show' | 'answer' | 'close'; readonly view?: 'summary' | 'full' | undefined; readonly queryId?: string | undefined; readonly prompt?: string | undefined; readonly askedBy?: string | undefined; readonly target?: string | undefined; readonly answer?: string | undefined; readonly resolution?: string | undefined; } //# sourceMappingURL=schema.d.ts.map