import React from 'react'; export interface GridListProps { data?: any[]; renderItem?: (item: any) => any; } export declare const GridList: React.FC;