import { StyleOptions } from '../../types'; export interface OverflowXProps { /** * The **`overflow-x`** CSS property 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. * * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x */ style$OverflowX: T; } export declare const overflowX: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;