import {Image, ImageHotspot, ImageCrop, ImageDimensions} from '@sanity/types' import {ObjectDiff} from '../../../diff' export interface ImagePreviewProps { id: string diff: ObjectDiff hotspot?: ImageHotspot crop?: ImageCrop is: 'from' | 'to' action?: 'changed' | 'added' | 'removed' } export interface MinimalAsset { url: string originalFilename: string metadata: { dimensions: ImageDimensions } }