import { ClearPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ClearProps { /** * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements. * * @see https://developer.mozilla.org/docs/Web/CSS/clear */ style$Clear: T; } export declare const clear: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;