/** * Syntax sugar for {@link appendStyleSheet}. Injects given CSS string as global * stylesheet in DOM head. If `first` is true, inserts it as first stylesheet, * else (default) appends it. * * Returns created style DOM element. * * @param css - CSS string * @param first - true, if prepend to stylesheet list (else append) */ export declare const injectStyleSheet: (css: string, first?: boolean) => HTMLStyleElement; /** * Injects given CSS string as `