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