export type BrandColor = 'apricot' | 'mint' | 'cornflower'; export declare const useContrastColor: (background: BrandColor) => BrandColor; export declare const mapColorToText: (brand: BrandColor) => string; export declare const mapColorToBG: (brand: BrandColor) => string; export declare const mapColorToLightBG: (brand: BrandColor) => string; export declare const mapColorToHex: (brand: BrandColor) => string;