import { ColumnSpanPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ColumnSpanProps { /** * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`. * * @see https://developer.mozilla.org/docs/Web/CSS/column-span */ style$ColumnSpan: T; } export declare const columnSpan: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;