import { ColumnsProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ColumnsProps { /** * The **`columns`** CSS property sets the column width and column count of an element. * * @see https://developer.mozilla.org/docs/Web/CSS/columns */ style$Columns: T; } export declare const columns: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;