import type { AppMenuLinkGroup } from "./types.js"; export type AppMenuListProps = { groups: AppMenuLinkGroup[]; /** Total number of links across all groups; the roving tab index size. */ itemCount: number; /** Called when an entry that doesn't opt out with `keepOpen` is activated. */ onClose: () => void; /** Without a handler no favorite toggles are rendered. */ onToggleFavorite?: (id: string, favorite: boolean) => void; }; /** * The app menu's right hand pane: the selected category's links, laid out as * titled groups of wrapping columns. * * The whole list is a single tab stop; the arrow keys move focus between the * links, following the visual grid. */ export declare function AppMenuList({ groups, itemCount, onClose, onToggleFavorite }: AppMenuListProps): import("react").JSX.Element;