import { StyleOptions } from '../../types'; export interface GridAutoRowsProps { /** * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. * * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows */ style$GridAutoRows: T; } export declare const gridAutoRows: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;