import type { JsonObject } from "#shared/json.js";
import type { ResolvedToolDefinition } from "#runtime/types.js";
/**
 * Stable model-visible name for the framework question tool.
 */
export declare const ASK_QUESTION_TOOL_NAME = "ask_question";
/**
 * Shared input schema used by the framework `ask_question` tool.
 */
export declare const ASK_QUESTION_INPUT_SCHEMA: JsonObject;
/**
 * Shared output schema used by the framework `ask_question` tool.
 */
export declare const ASK_QUESTION_OUTPUT_SCHEMA: JsonObject;
/**
 * Root-only framework tool that lets the agent request structured user input.
 *
 * This is a client-side tool (as indicated by it not having an `execute` method). It requires user input
 * and therefore cannot be autonomously executed by the runtime.
 */
export declare const ASK_QUESTION_TOOL_DEFINITION: ResolvedToolDefinition;
