/// import { PreloadPriority } from '../lazy/types'; export type EventInfo = { identifier: string; }; type Profiler = { onPreload(moduleId: string, priority?: PreloadPriority): void; onLoadStart(info: EventInfo): void; onLoadComplete(info: EventInfo): void; }; export type ProfilerContextType = { current: Profiler | null; }; export declare const GlobalReactLooselyLazyProfiler: ProfilerContextType; export declare const ProfilerContext: import("react").Context; export {}; //# sourceMappingURL=index.d.ts.map