import { PropsWithChildren, ReactElement } from 'react'; import { StandardEngine, Sheet } from '../types'; export declare type ProviderProps = { styleEngine?: StandardEngine; debug?: boolean; }; export declare const SPACEWEB_STYLE_PREFIX: Readonly; export declare const SPACEWEB_STYLE_CONTAINER_ID: Readonly; export declare const isServer: Readonly; export declare const hydrate: (ownerDocument?: Document) => HTMLCollectionOf; export declare const getStyleEngine: (ownerDocument?: Document) => StandardEngine; export declare const StyleProvider: { (props: PropsWithChildren): ReactElement; displayName: string; }; export declare const getStylesheets: () => Sheet[]; export declare const getStylesheetsHtml: () => string; export declare const appendCacheContainer: (ownerDocument?: Document) => Element;