import { REDOCLY_TEAMS_RBAC } from '@redocly/config'; import type { ApiItem } from '@redocly/api-docs'; import type { RbacScopeItems } from '@redocly/config'; export type ItemRouteEntry = { link: string; label?: string; httpVerb?: string; metadata?: Record; [REDOCLY_TEAMS_RBAC]?: RbacScopeItems; }; export declare function collectItemRoutes(items: ApiItem[], configRbac?: RbacScopeItems, inheritedRbac?: RbacScopeItems): ItemRouteEntry[]; //# sourceMappingURL=collect-item-routes.d.ts.map