import { StyleOptions } from '../../types'; export interface GridTemplateRowsProps { /** * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows. * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows */ style$GridTemplateRows: T; } export declare const gridTemplateRows: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;