import { ReactNode } from "react";
import { App } from "../../../client/app/client/app";
type ContextType = App;
export declare function AppProvider({ children, app }: {
    children?: ReactNode;
    app: App;
}): import("react/jsx-runtime").JSX.Element;
export declare function useApp(): ContextType;
export {};
