import { type ReactNode } from 'react';
/** Props for the Overflow container component. */
export interface OverflowProps {
/** OverflowItem and OverflowMenu components. Must be direct children (no wrapper elements). */
children: ReactNode;
/** CSS class name for the container `
`. */
className?: string;
/** Inline styles for the container ``. */
style?: React.CSSProperties;
/** When true, items collapse one at a time with tight spacing and grouped corners. */
compact?: boolean;
/** When true, items collapse from the right instead of the left. */
reverse?: boolean;
/** When true, all items with a `minStateWidth` snap to min state together, and all hideable items snap to hidden together. */
snap?: boolean;
}
declare const Overflow: import("react").ForwardRefExoticComponent>;
export default Overflow;
//# sourceMappingURL=Overflow.d.ts.map