export interface PaletteFamily { name: string; label: string; shades: PaletteSwatch[]; } export interface PaletteSwatch { token: string; value: string; label: string; } export declare const PALETTE_FAMILIES: PaletteFamily[];