export default insertStyleTag; /** * Inserts a style tag into unless an identical one is already present. * Dedup is keyed by a content hash stored on the tag, * and reflects DOM removals (HMR) automatically. * * @param {HTMLStyleElement} $targetStyle - The style element to be inserted * @returns {void} */ declare function insertStyleTag($targetStyle: HTMLStyleElement): void;