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