import React from "react"; import { Element } from "../../../types"; export interface OEmbedPropsInitCallableParams { props: OEmbedProps; node: HTMLElement; } export interface OEmbedProps { element: Element; renderEmbed?: (props: OEmbedProps) => React.ReactElement; global?: string; sdk?: string; init?: (params: OEmbedPropsInitCallableParams) => void; } export declare const OEmbed: (props: OEmbedProps) => React.ReactElement> | null;