import type { AliasToken, GlobalToken, OverrideToken } from './interface'; import { type MappingAlgorithm } from './theme-context'; declare class CacheToken { cache: [ token: Partial | undefined, algorithm: MappingAlgorithm | MappingAlgorithm[] | undefined, components: OverrideToken | undefined, token: GlobalToken ][]; getToken(token?: Partial, algorithm?: MappingAlgorithm | MappingAlgorithm[], components?: OverrideToken): GlobalToken; } export declare const createCacheToken: () => CacheToken; export {};