import { type ReactNode } from "react"; import { type RuntimeCommand } from "./command-registry.js"; export interface RuntimeContextValue { exit: () => void; } export interface RuntimeProviderProps { children: ReactNode; initialRoute?: string; initialCommands?: RuntimeCommand[]; onExit?: () => void; } export declare function RuntimeProvider({ children, initialRoute, initialCommands, onExit }: RuntimeProviderProps): ReactNode; export declare function useRuntime(): RuntimeContextValue; //# sourceMappingURL=app-runtime.d.ts.map