import React from 'react'; import type { RuntimeStatus } from './spec.js'; export type OnIframeRef = (elRef: null | HTMLIFrameElement) => void; type Props = { rendererUrl: null | string; rendererConnected: boolean; runtimeStatus: RuntimeStatus; backgroundColor: string; onIframeRef: OnIframeRef; }; export declare const RendererPreview: React.NamedExoticComponent; export {};