import type { ToolAnnotations } from "@modelcontextprotocol/sdk/types.js"; export type { ToolAnnotations }; /** Extract the meaningful verb from a kebab-case tool name. */ export declare function toolVerb(name: string): string; /** * Infer a tool's annotations from its name. `overrides` are merged last and win, * so a call site can correct any misclassification field-by-field. */ export declare function inferToolAnnotations(name: string, overrides?: ToolAnnotations): ToolAnnotations; //# sourceMappingURL=annotations.d.ts.map