import type { JSX } from 'solid-js'; export declare const wrapWithCsp: (html: string | null | undefined, allowScripts: boolean) => string; export type SandboxedHtmlProps = { html?: string | null; title?: string; allowScripts?: boolean; height?: number | string; }; export declare function SandboxedHtml(props: SandboxedHtmlProps): JSX.Element;