import { Component } from 'react'; import { BuiltinSimulatorHost, BuiltinSimulatorProps } from './host'; import { Project } from '../project'; import './host.less'; type SimulatorHostProps = BuiltinSimulatorProps & { project: Project; onMount?: (host: BuiltinSimulatorHost) => void; }; export declare class BuiltinSimulatorHostView extends Component { readonly host: BuiltinSimulatorHost; constructor(props: any); shouldComponentUpdate(nextProps: BuiltinSimulatorProps): boolean; render(): JSX.Element; } export {};