export declare enum SwatchColor { red = "red", orange = "orange", yellow = "yellow", green = "green", teal = "teal", cyan = "cyan", blue = "blue", indigo = "indigo", purple = "purple", magenta = "magenta", pink = "pink", gray = "gray" } export interface SwatchDetails { name: string; variants: SwatchVariant[]; } export interface SwatchVariant { id: string; colors: string[]; } export declare const swatches: Map;