/** Create a style element inside `target` or after the last */ export declare const makeStyleTag: (target?: HTMLElement | undefined) => HTMLStyleElement; /** Get the CSSStyleSheet instance for a given style element */ export declare const getSheet: (tag: HTMLStyleElement) => CSSStyleSheet;