import React from 'react'; import { type Props as BaseProps } from '../components/InputPlaceholderElement'; import { PlaceholderNode } from '../PlaceholderNode'; import type { FetchOEmbedFn } from '../types'; interface Props extends Omit { element: PlaceholderNode; fetchOembed: FetchOEmbedFn; withImagePlaceholders?: boolean; withVideoPlaceholders?: boolean; withWebBookmarkPlaceholders?: boolean; } export declare function EmbedPlaceholderElement({ children, element, fetchOembed, format, withImagePlaceholders, withVideoPlaceholders, withWebBookmarkPlaceholders, ...props }: Props): React.JSX.Element; export {};