import { ColumnCountProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ColumnCountProps { /** * The **`column-count`** CSS property breaks an element's content into the specified number of columns. * * @see https://developer.mozilla.org/docs/Web/CSS/column-count */ style$ColumnCount: T; } export declare const columnCount: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;