import { OverflowPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface OverflowProps { /** * The **`overflow`** shorthand CSS property sets what to do when an element's content is too big to fit in its block formatting context. It is a shorthand for `overflow-x` and `overflow-y`. * * @see https://developer.mozilla.org/docs/Web/CSS/overflow */ style$Overflow: T; } export declare const overflow: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;