import type { McpToolRegistration } from '../../../types'; import type { McpToolModuleExport } from '../types.js'; type ToolModuleLoader = (importPath: string) => Promise<{ default: McpToolModuleExport; }>; /** * Names of the tools whose handler declares an `isAvailable` predicate — the ones the live * server enables per caller. Includes every tool of a handler module that fails to load. */ export declare function findGatedToolNames(registrations: McpToolRegistration[], load?: ToolModuleLoader): Promise; export {}; //# sourceMappingURL=find-gated-tool-names.d.ts.map