import { Color } from './color'; export interface Image { id?: string | number; imageUrl: string; objects?: any; allowBackgroundColorChooser: boolean; backgroundColor: string; partColorImages: { originalImageUrl: string; imageUrl: string; color: Color; referentSizePrintAreaHeight: number; referentSizePrintAreaWidth: number; }[]; }