import React from 'react'; import { IListItem } from '../ListItem/ListItem'; export interface IImageListItemBox extends IListItem { position?: 'top' | 'bottom'; backgroundOpacity?: number; } declare const ImageListItemBox: React.FC; export default ImageListItemBox;