import { IImageStampProps } from './ImageStampProps'; /** * A small image stamp used for avatars or image thumbnails */ declare const ImageStamp: { ({ size, src, ...rest }: IImageStampProps): JSX.Element; defaultProps: { contain: any; size: string; plain: boolean; }; }; export { ImageStamp };