/** * #### Base colors * * @category color */ declare const baseColors: { midnightBlue: string; ciscoBlue: string; mediumBlue: string; magenta: string; orange: string; }; declare const base: { midnightBlue: string; ciscoBlue: string; mediumBlue: string; magenta: string; orange: string; }; type BaseColors = typeof baseColors; type Base = typeof base; export default base; export type { BaseColors, Base };