import { ScssResolvableAliasStrategy } from './ScssAliasStrategy.js'; /** * Will create an alias to var strategy. By applying this strategy when converting a token to css, * All the aliases will be converted to a css variable, e.g: `var(--alias-name)`. * Default templates: * - `tokenNotInCollectionNameTemplate` -> `${{groups}}-{{token}}-{{mode}}` * - `tokenNameTemplate` -> `${{groups}}-{{token}}` */ export declare function createAliasToVarStrategy(template?: string, shouldRenderSingleMode?: boolean): ScssResolvableAliasStrategy; //# sourceMappingURL=resolvableToVar.d.ts.map