export declare const baseColors: {};
export declare const scaleColors: {
    readonly primary: "primary";
    readonly secondary: "secondary";
    readonly accent: "accent";
    readonly destructive: "destructive";
    readonly success: "success";
    readonly warning: "warning";
    readonly contrast: "contrast";
    readonly info: "info";
    readonly foreground: "foreground";
    readonly surface: "background";
    readonly divider: "border";
    readonly elevation: "shadow";
    readonly overlay: "overlay";
    readonly muted: "muted";
};
export declare const noForegroundColors: ["surface", "foreground", "overlay", "divider", "muted", "elevation"];
export declare const colorScales: readonly ["50", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
export type ScaleColorName = keyof typeof scaleColors;
export type ColorScale = typeof colorScales[number];
