import { ColumnRuleProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ColumnRuleProps { /** * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout. * * @see https://developer.mozilla.org/docs/Web/CSS/column-rule */ style$ColumnRule: T; } export declare const columnRule: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;