import type { ColorScheme } from '~/types/color-scheme';
import type { PartialTokensDefinition } from '~/types/token-defs';
export type TokenValueCacheValue = ColorScheme<PartialTokensDefinition>;
export type TokenValueCacheData = Record<string, ColorScheme<PartialTokensDefinition>>;