/** * @jsxRuntime classic * @jsx jsx */ import { jsx } from '@emotion/react'; import type { SmartLinksOptions } from '../../types/smartLinksOptions'; import type { EventHandlers } from '@atlaskit/editor-common/ui'; import type { RichMediaLayout } from '@atlaskit/adf-schema'; import type { RendererAppearance } from '../../ui/Renderer/types'; type EmbedCardInternalProps = { data?: object; eventHandlers?: EventHandlers; isInsideOfBlockNode?: boolean; isInsideOfInlineExtension?: boolean; layout: RichMediaLayout; onSetLinkTarget?: (url: string) => '_blank' | undefined; originalHeight?: number; originalWidth?: number; portal?: HTMLElement; rendererAppearance?: RendererAppearance; smartLinks?: SmartLinksOptions; url?: string; width?: number; }; export declare const EmbedOrBlockCardInternal: ({ url, data, eventHandlers, portal, originalHeight, originalWidth, width: embedWidth, layout, rendererAppearance, isInsideOfBlockNode, smartLinks, isInsideOfInlineExtension, onSetLinkTarget, }: EmbedCardInternalProps) => jsx.JSX.Element; declare const EmbedCardWithCondition: import("react").FC; export default EmbedCardWithCondition;