import type { ResolvedAsyncApiNavItem, AsyncApiDefinition } from '../types/index.js';
import type { ApiItems } from './nav-to-api-items.js';
export declare function buildMenuItems({ asyncApiDoc, protocol }: {
    asyncApiDoc: AsyncApiDefinition;
    protocol?: string;
}): {
    navItems: ResolvedAsyncApiNavItem[];
    apiItems: ApiItems;
};
