import { IStyleConfig } from '../types/IStyleConfig'; import { _metaKey } from './_constants'; export interface IGlobals { s: Map; c: IStyleConfig; } declare global { interface Window { /** * _MUST REMAIN STABLE BETWEEN VERSIONS!_ */ [_metaKey]?: { s: Map; c: IStyleConfig; }; } } export declare const _globals: IGlobals;