import * as React from 'react'; import Row from './row'; import Col from './col'; export declare type GridProps = { prefixCls?: string; className?: string; fluid?: boolean; }; declare class Grid extends React.Component { static Row: typeof Row; static Col: typeof Col; static defaultProps: { prefixCls: string; fluid: boolean; }; render(): JSX.Element; } export default Grid;