export type PageLoadTimeReport = { pageLoadTime: number; status: 'success'; } | { status: 'error'; } | { status: 'detecting'; }; /** * Hook that reports the page load time to the Cloudpack backend. * @returns The page load time in milliseconds, or `null` if the page load time could not be determined. `undefined` is returned if the page load time is still being calculated. */ export declare function usePageLoadTimeReporter(): PageLoadTimeReport; //# sourceMappingURL=usePageLoadTimeReporter.d.ts.map