import type { RichMediaAttributes } from './types/rich-media-common'; import type { NodeSpec } from '@atlaskit/editor-prosemirror/model'; export interface EmbedCardAttributes extends RichMediaAttributes { localId?: string; originalHeight?: number; originalWidth?: number; url: string; } /** * @name embedCard_node */ export interface EmbedCardDefinition { attrs: EmbedCardAttributes; type: 'embedCard'; } export declare const embedCard: NodeSpec; export declare const embedCardWithLocalId: NodeSpec;