/** The four semantic status tones that resolve to a fixed palette hue. */ export type StatusTone = "success" | "warning" | "error" | "info"; /** * The chromatic hue families the palette carries. This is palette vocabulary, so it * lives beside `palette` rather than inside the one component that first needed it, * and it types the map below: a tone can only resolve to a hue that exists. */ export type Hue = "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "fuchsia" | "purple" | "pink" | "rose"; /** * Palette hue family per status tone. Compose with a step to key into `palette`, * e.g. `palette[`${statusHues.warning}-500`]`. */ export declare const statusHues: Record; //# sourceMappingURL=status-hue.d.ts.map