import React from 'react'; import GridBagRuler from './GridBagRuler'; import GridBagItem from './GridBagItem'; declare type GridBagChild = React.ReactElement | boolean | null | undefined | GridBagChild[]; declare type GridBagProps = { /** Show helper lines */ showGridLines?: boolean; /** Remove spaces in between columns */ noGutter?: boolean; /** Remove horizontal space around the children */ noHorizontalGutter?: boolean; /** Remove vertical space around the children */ noVerticalGutter?: boolean; children: GridBagChild; } & Omit; declare const GridBag: React.FunctionComponent & { Item: typeof GridBagItem; Ruler: typeof GridBagRuler; }; export default GridBag;