interface PreliquifyRuntime { components: Map; mounted: Map; errors: Error[]; debug: boolean; } declare global { interface Window { __PRELIQUIFY__: { [key: string]: any; }; __preliquifyRuntime: PreliquifyRuntime; __PRELIQUIFY_DEBUG__: boolean; } } export {};