import React from 'react'; interface Props { html: string; className?: string; onError: () => void; } export declare function HtmlInjection(props: Props): React.JSX.Element; export declare function injectOembedMarkup({ html, onError, target, }: { html: string | undefined; onError: () => void; target: HTMLElement; }): void; export {};