/**
 * @file renderDropdownItems.tsx
 * @output Converts data-driven menu items into DropdownMenuItem components
 * @position Utility; used by DropdownMenu to unify data-driven and compound paths
 */
import type { ReactNode } from 'react';
import type { DropdownMenuOption } from './DropdownMenu';
/**
 * Converts data-driven items into DropdownMenuItem components,
 * so both modes share the same rendering and keyboard navigation path.
 */
export declare function renderDropdownItems(items: DropdownMenuOption[]): ReactNode;
//# sourceMappingURL=renderDropdownItems.d.ts.map