import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Overflow` - Defines how a container handles content that exceeds its available space. * * @public */ export declare const Overflow: { /** * `visible` - Overflowing content is visible and not clipped. * * @default */ readonly Visible: "visible"; /** * `hidden` - Overflowing content is clipped and hidden without scrollbars. */ readonly Hidden: "hidden"; /** * `scroll` - Overflowing content is accessible via scrollbars. */ readonly Scroll: "scroll"; /** * `auto` - Scrollbars appear automatically when content overflows. */ readonly Auto: "auto"; }; /** * @public */ export type Overflow = ValuesOf; //# sourceMappingURL=Overflow.d.ts.map