export declare const gridDefaultProps: Partial; export declare type GridProps = { container: boolean; className?: string; }; export declare type GridContainerProps = { inline: boolean; columns: string; rows: string; columnGap: string | number; rowGap: string | number; justifyItems?: 'start' | 'end' | 'center' | 'stretch'; alignItems?: 'start' | 'end' | 'center' | 'stretch'; justifyContent?: 'start' | 'end' | 'center' | 'stretch' | 'space-around' | 'space-between' | 'space-evenly'; alignContent?: 'start' | 'end' | 'center' | 'stretch' | 'space-around' | 'space-between' | 'space-evenly'; }; export declare type GridItemProps = { columnStart: number | string; columnEnd: number | string; rowStart: number | string; rowEnd: number | string; justifySelf?: 'start' | 'end' | 'center' | 'stretch'; alignSelf?: 'start' | 'end' | 'center' | 'stretch'; };