/** * Transforms a style dictionary token path to a CSS custom property. * * A css prefix will be prepended and all [default] key words will be omitted * from the path * * @example Passing a path as an array * // Returns ds-background-bold * getCSSCustomProperty(['color', 'background', 'bold', '[default]']) * * @example Passing a path as a string * // Returns ds-background-bold * getCSSCustomProperty('color.background.bold.[default]') */ export declare const getCSSCustomProperty: (path: string | string[]) => string;