import type { OpenAPIDefinition, OpenAPIOperation } from '@redocly/openapi-docs'; import type { SearchItemData } from '@redocly/theme/core/types'; import type { AccessInfo, McpEndpoint } from '../../types'; export declare function isMcpEndpoint(value: unknown): value is McpEndpoint; type EndpointInfo = Pick & { method: string; path: string; }; export declare function getEndpointsFromPaths(def: OpenAPIDefinition): EndpointInfo[]; export declare function processDocuments(documents: Record, outdir: string): string; export declare function getApiDescriptionFromFs({ relativePath, outdir, accessInfo: { isAuthenticated, email, teams, rbac, requiresLogin }, }: { relativePath: string; outdir: string; accessInfo: AccessInfo; }): Promise; export {}; //# sourceMappingURL=utils.d.ts.map