import * as React from 'react'; import PropTypes from 'prop-types'; import { AnalyticsLayoutProps } from './AnalyticsLayout.types'; import Cell from './Cell/Cell'; /** AnalyticsLayout */ declare class AnalyticsLayout extends React.PureComponent { static displayName: string; static defaultProps: { items: never[]; }; static Cell: typeof Cell; static propTypes: { dataHook: PropTypes.Requireable; className: PropTypes.Requireable; items: PropTypes.Validator; children: PropTypes.Validator<(...args: any[]) => any>; }; render(): React.JSX.Element; } export default AnalyticsLayout; //# sourceMappingURL=AnalyticsLayout.d.ts.map