//IGNORE FOR NOW, CURRENTLY NOT USED IN SCRAPBOOK IMPLEMENTATION export interface SlotDefinition { id: string; x: number; y: number; defaultWidth: number; defaultHeight: number; } export interface SlotContentMap { slotId: string; docId?: string; } export interface ScrapbookConfig { slots: SlotDefinition[]; contents?: SlotContentMap[]; } export const DEFAULT_SCRAPBOOK_CONFIG: ScrapbookConfig = { slots: [ { id: "slot1", x: 10, y: 10, defaultWidth: 180, defaultHeight: 120 }, { id: "slot2", x: 200, y: 10, defaultWidth: 180, defaultHeight: 120 }, // …etc ], contents: [] };