export type ColorMap = { [category: string]: { '900'?: string; '800'?: string; '700'?: string; '500'?: string; '400'?: string; '300'?: string; '200'?: string; '100'?: string; '50'?: string; }; }; export type ColorShade = '900' | '800' | '700' | '500' | '400' | '300' | '200' | '100' | '50'; export declare const Colors: ColorMap; export type ColorCategory = keyof typeof Colors; export declare const getColor: (category: ColorCategory, shade: ColorShade) => string; export declare const allColors: boolean[]; export declare const ColorOptions: any[]; export declare const ColorValues: any[]; export declare const Shades: string[]; export declare const Categories: string[]; export declare const isValidColor: (color: string) => boolean; export default Colors;