import type { ReactNode } from 'react'; /** Props for the OverflowItem component. */ export interface OverflowItemProps { /** The item content (typically a button or link). */ children: ReactNode; /** Links this toolbar item to its menu counterpart. Items with matching menuIds are shown/hidden together. */ menuId?: string; /** CSS width value for the min (icon-only) state. When set, the item shrinks to this width before being fully hidden. */ minStateWidth?: string; } declare function OverflowItem({ children, menuId, minStateWidth }: OverflowItemProps): import("react/jsx-runtime").JSX.Element; declare namespace OverflowItem { var overflowRole: "item"; } export default OverflowItem; //# sourceMappingURL=OverflowItem.d.ts.map