/** * Transforms a style dictionary token path to a fully qualified token id * These Ids are intended to be used internal to this package by style-dictionary * * [default] key words will NOT be omitted from the path * * @example Passing a path as a string * // Returns color.background.bold.[default] * getFullyQualifiedTokenId(['color', 'background', 'bold', '[default]']) */ export declare const getFullyQualifiedTokenId: (path: string[]) => string;