import type { Artboard } from "./artboard"; import type { Asset } from "./asset"; import type { DocumentId } from "./id"; import type { InpaintRegion } from "./inpaint-region"; export type ImageDocument = { id: DocumentId; name: string; version: number; artboards: Artboard[]; assets: Asset[]; inpaintRegions: InpaintRegion[]; };