interface IColor { [key: string]: { backgroundColor: string; borderColor: string; color: string; }; } export declare const LightColors: IColor; export declare const DarkColors: IColor; export {};