import type { HexString, TokenMapConfig } from '../types/color-system';
export declare function isHexColor(color: string): boolean;
export declare function getCacheKey({ inputColor, tokenMap }: {
    inputColor: HexString;
    tokenMap: TokenMapConfig;
}): string;
