/** * @description * Get the value of a CSS variable from the root element * @param key * @returns * @example * getRootStylePropertyValue('--color-primary') */ export declare function getRootStylePropertyValue(key: string): string;