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