import React from 'react'; export interface GridListProps { items?: any[]; onClick?: (item: any) => void; addItem?: () => void; renderItem?: (item: any) => JSX.Element; } export declare const GridList: React.FC;