import type React from "react"; type LoadingContextType = { isLoading: boolean; setIsLoading: (loading: boolean) => void; }; export declare function LoadingProvider({ children }: { children: React.ReactNode; }): React.JSX.Element; export declare function useLoading(): LoadingContextType; export {}; //# sourceMappingURL=loading-provider.d.ts.map