export interface SwatchItem { key: string; thumbnail?: string; color?: string; displayName?: string; description?: string; numChildren?: number; hasColumns: boolean; parent: SwatchItem | undefined; children: SwatchItem[]; childName?: (plural: boolean) => string; }