import React, { MouseEventHandler } from 'react'; export type ThumbnailProps = { image: string; alt?: string; handleClose?: MouseEventHandler; id?: string; size?: number; }; export declare const Thumbnail: ({ alt, handleClose, image, size }: ThumbnailProps) => React.JSX.Element; //# sourceMappingURL=Thumbnail.d.ts.map