import { ResponsiveInputValueType } from '@c3/css'; import React from 'react'; import { BaseProps } from '../Common'; export declare type IGridProps = BaseProps & { cols: ResponsiveInputValueType; cellWidth: ResponsiveInputValueType; cellHeight: ResponsiveInputValueType; rgap: ResponsiveInputValueType; cgap: ResponsiveInputValueType; }; export declare const Grid: React.FC;