import { BoxProps, CompoundStylesApiProps, ElementProps, Factory, StyleProp } from '../../../core'; export type GridColStylesNames = 'col'; export type ColSpan = number | 'auto' | 'content'; export interface GridColProps extends BoxProps, CompoundStylesApiProps, ElementProps<'div'> { /** Column span @default 12 */ span?: StyleProp; /** Column order, use to reorder columns at different viewport sizes */ order?: StyleProp; /** Column start offset – number of empty columns before this column */ offset?: StyleProp; /** Vertical alignment of the column, controls `align-self` CSS property */ align?: StyleProp; } export type GridColFactory = Factory<{ props: GridColProps; ref: HTMLDivElement; stylesNames: GridColStylesNames; compound: true; }>; export declare const GridCol: import("../../..").MantineComponent<{ props: GridColProps; ref: HTMLDivElement; stylesNames: GridColStylesNames; compound: true; }>;