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