import { ReactNode } from "react";
type SplashScreenContextType = {
    finish(): void;
    reset(): void;
    isFinished: boolean;
};
export declare function SplashScreenProvider({ children }: {
    children?: ReactNode;
}): import("react/jsx-runtime").JSX.Element;
export declare function useSplashScreen(): SplashScreenContextType;
export {};
