import type { TokenMap } from "../types.js"; export declare function fromTailwindV3(root: string): Promise; export declare function fromTailwindV4(root: string): Promise; export declare function fromDtcg(root: string): Promise; /** * Style Dictionary (v3 `value`/`type`), Tokens Studio (`$metadata`/`$themes` * wrappers + TS type names), and Figma Variables (via their DTCG/Tokens-Studio * export) — all share a `{ value, type }` leaf shape. Normalized into the same * token-map model. DTCG (`$value`/`$type`) files are inert here (handled by * `fromDtcg`) since they carry no bare `value`/`type` leaf. */ export declare function fromValueTypeTokens(root: string): Promise; export declare function loadTokens(root: string): Promise;