import { StyleOptions } from '../../types'; export interface GridColumnStartProps { /** * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area. * * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start */ style$GridColumnStart: T; } export declare const gridColumnStart: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;