import type { Tool, ToolChoice } from "ai";
export declare function resolveToolChoice(options: {
    toolChoice?: ToolChoice<Record<string, Tool>>;
}, tools: Record<string, Tool> | undefined, shouldUseTools: boolean): ToolChoice<Record<string, Tool>> | "none";
