import type { TokenMap } from '../interface'; /** * This function will do as `Object.assign` in production. But will use Object.defineProperty:get to * pass all value access in development. To support statistic field usage with alias token. */ export declare function merge(...objs: Partial[]): CompTokenMap; /** @internal Internal Usage. Not use in your production. */ export declare const statistic: Record; }>; /** @internal Internal Usage. Not use in your production. */ export declare const _statistic_build_: typeof statistic; /** Statistic token usage case. Should use `merge` function if you do not want spread record. */ declare const statisticToken: (token: CompTokenMap) => { token: CompTokenMap; keys: Set; flush: (componentName: string, componentToken: Record) => void; }; export default statisticToken;