import React from 'react';
interface IProps {
    /**
    * Maximum rows to display without scrolling
    */
    RowsPerPage: number;
    /**
     * Optional maximum number of columns per row
     */
    ColMax?: number;
}
declare const LayoutGrid: (props: React.PropsWithChildren<IProps>) => JSX.Element;
export default LayoutGrid;
