import './GridContent.less'; import React, { CSSProperties } from 'react'; import { PureSettings } from '../defaultSettings'; interface GridContentProps { contentWidth?: PureSettings['contentWidth']; children: React.ReactNode; className?: string; style?: CSSProperties; prefixCls?: string; } /** * This component can support contentWidth so you don't need to calculate the width * contentWidth=Fixed, width will is 1200 * @param props */ declare const GridContent: React.SFC; export default GridContent;