import { default as React } from 'react'; export interface HtmlPreviewFrameProps { code: string; isDark?: boolean; htmlPreviewAllowScripts?: boolean; htmlPreviewSandbox?: string; onClose?: () => void; title?: string; } export declare function HtmlPreviewFrame(props: HtmlPreviewFrameProps): React.ReactPortal; export default HtmlPreviewFrame;