import React from 'react';
export type ScriptEmbed = {
    html?: string | null;
    height?: number | null;
    width?: number | null;
    children?: React.ReactElement | React.ReactElement[];
    dataNtpc?: string;
};
export default function ThirdPartyScriptEmbed({ html, height, width, children, dataNtpc, }: ScriptEmbed): React.JSX.Element;
