import type { Transform } from 'style-dictionary/types';
/**
 * @description converts dimension tokens value to `rem`
 * @type value transformer — [StyleDictionary.ValueTransform](https://github.com/amzn/style-dictionary/blob/main/types/Transform.d.ts)
 * @matcher matches all tokens of $type `dimension`
 * @transformer returns a `rem` string
 * @note Expects W3C DTCG format { value: number, unit: "px" | "rem" | "em" }
 */
export declare const dimensionToRem: Transform;
