import React from 'react'; import { Location } from 'react-router-dom'; export interface ReadyContextData { ready: boolean; onReady(args: TOnReadyArgs): void; location: Location; } export declare const ReadyContext: React.Context>; export declare function useReadyCore(): ReadyContextData;