import { MaterialComponent, MaterialComponentProps } from '@preact-material-components/base/lib/MaterialComponent'; export * from './aspect-container'; export * from './image'; export * from './item'; export * from './label'; export * from './supporting'; export interface IImageListProps { masonry?: boolean; 'with-text-protection'?: boolean; } export interface IImageListState { } export declare class ImageList extends MaterialComponent { protected componentName: string; protected mdcProps: string[]; protected materialDom(props: MaterialComponentProps): JSX.Element; }