import { StyleOptions } from '../../types'; export interface OrphansProps { /** * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column. * * @see https://developer.mozilla.org/docs/Web/CSS/orphans */ style$Orphans: T; } export declare const orphans: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;