import React from 'react'; declare type GridBagRulerProps = { /** Show helper lines */ showGridLines?: boolean; /** Remove spaces in between columns */ noGutter?: boolean; } & JSX.IntrinsicElements['div']; declare const GridBagRuler: React.FunctionComponent; export default GridBagRuler;