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