import { ComponentProps } from 'react'; export declare type GridListColumns = 3 | 4; export declare type GridListProps = ComponentProps<'div'> & { columns?: GridListColumns; }; export declare const GridList: { (props: GridListProps): JSX.Element; Item: ({ children, ...rest }: { [x: string]: any; children: any; }) => JSX.Element; };