import { Dispatch, ReactNode, SetStateAction } from 'react'; type LoadingContextProps = { loading: boolean; setLoading: Dispatch>; }; export declare const LoadingContext: import("react").Context; export declare const LoadingContextProvider: ({ children, }: { children: ReactNode; }) => JSX.Element; export declare const useLoadingContext: () => LoadingContextProps; export {};