export type AppMenuFavoriteButtonProps = { /** Label of the app the toggle belongs to, used for the accessible name. */ appLabel: string; isFavorite: boolean; onToggle: () => void; /** * Shares the tab stop of the app link it belongs to, so Tab reaches it * without adding a stop per app to the arrow key navigation. See * `useRovingTabIndex().getSecondaryProps`. */ tabIndex: number; onFocus: () => void; }; /** * Star toggle rendered next to an app link. It is only visible while the entry * is hovered or focused, unless the app already is a favorite. */ export declare function AppMenuFavoriteButton({ appLabel, isFavorite, onToggle, tabIndex, onFocus, }: AppMenuFavoriteButtonProps): import("react").JSX.Element;