import * as Css from 'csstype'; import { type GenericToken, type ThemeToken } from './types'; import { type Length } from '../utility-types'; export declare const gridStyleProperties: import("./types").StylePropertyConfigs; export type GridProps = { gridGap?: ThemeToken>; gridColumnGap?: ThemeToken>; gridRowGap?: ThemeToken>; gridColumn?: GenericToken; gridRow?: GenericToken; gridAutoFlow?: GenericToken; gridAutoColumns?: GenericToken; gridColumnStart?: GenericToken; gridColumnEnd?: GenericToken; gridRowStart?: GenericToken; gridRowEnd?: GenericToken; gridAutoRows?: GenericToken; gridTemplate?: GenericToken; gridTemplateColumns?: GenericToken; gridTemplateRows?: GenericToken; gridTemplateAreas?: GenericToken; gridArea?: GenericToken; };