import { Node } from '../../externals.js'; export interface UmbEmbeddedMediaOptions { inline: boolean; } export declare const umbEmbeddedMedia: Node; declare module '@tiptap/core' { interface Commands { umbEmbeddedMedia: { setEmbeddedMedia: (options: { markup: string; url: string; width?: string; height?: string; constrain?: boolean; }) => ReturnType; }; } }