/** * @remarks * Determines whether or not the current browser supports `adoptedStyleSheets` */ export declare const supportsAdoptingStyleSheets: boolean; declare class StateModel { documentStyleSheets?: CSSStyleSheet[]; } /** * This store is used to hold the site's CSSStyleSheet */ declare const state: StateModel; export { state as cssStyleState };