import { Token } from 'style-dictionary'; /** * getValue * @description Returns the value of the design token, either token.value or token.$value * @param token StyleDictionary.DesignToken * @returns token value */ export declare const getValue: (token: Token | Record, original?: "original" | undefined) => T;