import React from 'react'; import { GridProps } from '@material-ui/core'; import { AnyObject } from '../components/ComponentTypes'; declare type GridItemContainerProps = GridProps & { divider?: boolean; dividerProps?: AnyObject; primary?: string; primaryProps?: AnyObject; subPrimary?: string; subPrimaryProps?: AnyObject; secondary?: string; secondaryProps?: AnyObject; }; declare const _default: React.FC; export default _default;