import { SpecifyDimensionUnitValue, TokenState } from '@specifyapp/specify-design-token-format'; import type { KeysPerToken } from './definition.js'; import { ParserToolbox } from '../../../parsersEngine/ParserToolbox.js'; export type BaseValue = { rem?: number; }; export type options = { targetUnit: SpecifyDimensionUnitValue; excludeFormats: Array | undefined; includeFormats: Array | undefined; baseValue: BaseValue; applyToKeys: KeysPerToken; }; export declare function updateToken(token: TokenState, options: options, toolbox: ParserToolbox): void; //# sourceMappingURL=updateToken.d.ts.map