declare const colors: readonly ["main", "tomato", "red", "crimson", "pink", "plum", "purple", "violet", "indigo", "blue", "cyan", "teal", "green", "grass", "orange", "brown", "sky", "mint", "lime", "yellow", "amber", "gold", "bronze", "error", "info", "success", "warning"];
declare const trueColors: readonly ["main", "tomato", "red", "crimson", "pink", "plum", "purple", "violet", "indigo", "blue", "cyan", "teal", "green", "grass", "orange", "brown", "sky", "mint", "lime", "yellow", "amber", "gold", "bronze"];
type RecastColors = (typeof colors)[number];
type TrueColors = (typeof trueColors)[number];
type SolidTextMappingType = Record<RecastColors, string>;
declare const solidTextMapping: SolidTextMappingType;
declare const stateColors: string[];

export { RecastColors, SolidTextMappingType, TrueColors, colors, solidTextMapping, stateColors, trueColors };
