import { StyleOptions } from '../../types'; export interface GridRowProps { /** * The **`grid-row`** CSS property is a shorthand property for `grid-row-start` and `grid-row-end` specifying a grid item’s size and location within the grid row 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-row */ style$GridRow: T; } export declare const gridRow: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;