import { type IframeHTMLAttributes, type SyntheticEvent } from 'react'; import { type ContentStateProps } from '../ContentState'; export type IframeProps = { src: string; onLoading?: (event?: SyntheticEvent) => void; onError?: (event?: SyntheticEvent) => void; sandbox?: IframeHTMLAttributes['sandbox']; title?: string; } & Pick; export declare const Iframe: import("react").ForwardRefExoticComponent<{ src: string; onLoading?: ((event?: SyntheticEvent) => void) | undefined; onError?: ((event?: SyntheticEvent) => void) | undefined; sandbox?: IframeHTMLAttributes['sandbox']; title?: string | undefined; } & Pick & import("react").RefAttributes>;