import { FunctionComponent, HTMLAttributes } from 'react'; import { Alignment, BlockWidth } from './settings'; declare type Props = HTMLAttributes & { /** Value and label alignment for blocks. By default content is aligned to the left. */ align?: Alignment; /** The block width variant */ blockWidth?: BlockWidth; }; declare const OverviewBlockGroup: FunctionComponent; export default OverviewBlockGroup;