import { StyleOptions } from '../../types'; export interface BreakBeforeProps { /** * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored. * * @see https://developer.mozilla.org/docs/Web/CSS/break-before */ style$BreakBefore: T; } export declare const breakBefore: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;