import React from 'react'; import { ILine } from '../Line/Line'; import { IValueBreakpoints, IPropsAny } from '../types'; export type IGridValues = Partial>; export interface IGrid extends ILine { auto?: boolean; columns?: number | IGridValues; offsets?: IGridValues; responsive?: boolean; values?: IGridValues; RootProps?: IPropsAny; } declare const Grid: React.FC; export default Grid;