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