import type { OpenAPIDefinition } from '@redocly/api-docs'; import type { McpMode } from '../../../types.js'; /** Methods documented and visible at `path`, uppercased. */ export declare function visibleMethodsAt(definition: OpenAPIDefinition, path: string): string[]; /** Paths with at least one visible operation. */ export declare function visiblePaths(definition: OpenAPIDefinition): string[]; /** Message for a path the definition does not document, or documents only behind `x-mcp`. */ export declare function describePathMiss(definition: OpenAPIDefinition, apiTitle: string, path: string, mcpMode?: McpMode): string; /** Message for a visible path that does not document the requested method, or hides it. */ export declare function describeMethodMiss(definition: OpenAPIDefinition, apiTitle: string, path: string, method: string): string; //# sourceMappingURL=endpoint-suggestions.d.ts.map