import { StyleOptions } from '../../types'; export interface GridColumnProps { /** * The **`grid-column`** CSS property is a shorthand property for `grid-column-start` and `grid-column-end` specifying a grid item's size and location within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area. * * @see https://developer.mozilla.org/docs/Web/CSS/grid-column */ style$GridColumn: T; } export declare const gridColumn: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;