/** * Load a style string into the document * @param css * @returns * @example * const remove = loadStyleString('body { background: red; }') */ export declare function loadStyleString(css: string): () => void;