import { LayoutList } from '../image-layout-list/types'; export interface ImageData { file: Blob; } export interface ImageKey { type: string; key: string; } export interface Images { layout: LayoutList; imageCount: number; imageKeys: ImageKey[]; }