import { AnalyzedSDTFNode } from './AnalyzedSDTFNode.js'; import { SpecifyDesignTokenCollectionProperties } from '../../../definitions/index.js'; import { TreePath } from '../../state/path/TreePath.js'; export type AnalyzedCollection = AnalyzedSDTFNode & SpecifyDesignTokenCollectionProperties & { allowedModes: Array; }; export declare function parseRawCollection(path: TreePath, rawCollection: SpecifyDesignTokenCollectionProperties): AnalyzedCollection;