import { ColumnWidthProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ColumnWidthProps { /** * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width. * * @see https://developer.mozilla.org/docs/Web/CSS/column-width */ style$ColumnWidth: T; } export declare const columnWidth: , Theme = never, Breakpoints = never>({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;