import { FunctionComponent } from 'react'; interface ImageModalProps { altText?: string; downloadButtonLabel?: string; handleModalClose: () => void; hasLiked?: boolean; image: string; isPlaceholder?: boolean; likeCount?: number; onLike: () => void; onShare: () => void; open: boolean; shareButtonLabel?: string; } export declare const ImageModal: FunctionComponent; export {};