import { JSONObject, JSONValuePath } from '../../../utils/JSONDefinitions.js'; import { SpecifyDesignTokenCollectionProperties, SpecifyDesignTokenGroupProperties, SpecifyDesignTokenSignature } from '../../../definitions/index.js'; export declare function traverseTokenTree(tokenTree: JSONObject, { onToken, onCollection, onGroup, }: { onToken: (path: JSONValuePath, rawToken: SpecifyDesignTokenSignature) => void; onCollection: (path: JSONValuePath, collectionProperties: SpecifyDesignTokenCollectionProperties) => void; onGroup: (path: JSONValuePath, groupProperties: SpecifyDesignTokenGroupProperties) => void; }): void;