import type { AppManifest, ScreenSpec, StateAdapter } from '@ankhorage/contracts'; import React from 'react'; import type { ComponentRegistry } from './registry'; export interface RuntimeScreenProps { readonly manifest: AppManifest; readonly screen: ScreenSpec; readonly registry?: ComponentRegistry; readonly stateAdapter?: StateAdapter; } export declare function RuntimeScreen(props: RuntimeScreenProps): React.JSX.Element; //# sourceMappingURL=RuntimeScreen.d.ts.map