import type { InitRuntimeState } from '../runtime';
interface InitInkAppProps {
    getSnapshot: () => InitRuntimeState;
    subscribe: (listener: () => void) => () => void;
    updatePromptError: (error?: string) => void;
}
export default function InitInkApp({ getSnapshot, subscribe, updatePromptError }: Readonly<InitInkAppProps>): import("react/jsx-runtime").JSX.Element;
export {};
