import React from "react"; import { IBreakPointDescriptor } from "../../layout/mediaQueries"; export interface IProps extends React.HTMLAttributes { /** If true, add padding on the left and right ~5%. Only use for outer elements. */ isContainer?: boolean; /** If true, column widths will be fixed pixel width (1/12 of optimal screen size). */ isFixedColumns?: boolean; /** If true, row heights will be in chunks similar to columns. */ isFluidRows?: boolean; /** Additional vertical padding. Format string to match spacing format. See README for details */ verticalPadding?: string | IBreakPointDescriptor; /** Additional vertical margin. Format string to match spacing format. See README for details */ verticalMargin?: string | IBreakPointDescriptor; /** If true, the grid will only expand and can't shrink (sets flex-shrink: 0) */ preventShrink?: boolean; /** If true, the grid try to fit available space. Note that this is not supported by IE. (sets flex-grow: 1). Defaults to false. */ allowGrow?: boolean; } export declare const Grid: React.SFC; export default Grid;