import { Brand } from '../constants'; type ColorShades = { 900: string; 800: string; 700: string; 600: string; 500: string; 400: string; 300: string; 200: string; 100: string; }; export type ColorBrand = { background: string; } & Pick; type Secondary = Pick; type BrandColors = { secondary: Secondary; red?: ColorShades; green?: ColorShades; yellow?: ColorShades; grey?: ColorShades; error?: ColorShades; warning?: ColorShades; success?: ColorShades; brand: ColorBrand; primary: ColorShades; }; export declare const brandPalette: Record; export {};