import * as React from 'react';
import { AnalyticsLayoutProps } from './AnalyticsLayout.types';
import Cell from './Cell/Cell';
/** AnalyticsLayout */
declare class AnalyticsLayout extends React.PureComponent<AnalyticsLayoutProps> {
    static displayName: string;
    static defaultProps: {
        items: never[];
        minItemsPerRow: number;
        maxItemsPerRow: number;
        divider: boolean;
    };
    static Cell: typeof Cell;
    render(): React.JSX.Element;
}
export default AnalyticsLayout;
//# sourceMappingURL=AnalyticsLayout.d.ts.map