import type { Rect } from "./geometry"; import type { ArtboardId } from "./id"; import type { Layer } from "./layer"; export type Artboard = { id: ArtboardId; name: string; bounds: Rect; backgroundColor: string; visible: boolean; locked: boolean; layers: Layer[]; };