/** * Get a property based on the token * e.g: color: var(--dt-colors-charts-categorical-color-02-default, hsl(270, 97%, 13%))' * newColor: --dt-colors-charts-categorical-color-02-default * return value: hsl(270, 97%, 13%) (the color based on the theme) * @param token - Design token string * @returns the property computed style */ export declare const getTokenComputedStyle: (token: string) => string;