/// import { OverflowProperty, OverflowXProperty, OverflowYProperty } from './utils/csstype'; import { OptionalResponsiveProp } from './utils/types'; /** * Style props for the overflow behavior of an element. * * @docsPath UI/Style System/Overflow */ export interface OverflowProps { /** Sets what to do when an element's content is too big to fit in its block formatting context. It is a shorthand for `overflowX` and `overflowY`. */ overflow?: OptionalResponsiveProp; /** Sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content. */ overflowY?: OptionalResponsiveProp; /** Sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content. */ overflowX?: OptionalResponsiveProp; } export declare const overflow: import("@styled-system/core").styleFn; export declare const overflowPropTypes: import("../../private_utils").ObjectMap>;