import { Node } from '@tiptap/core'; export interface IframeOptions { allowFullscreen: boolean; HTMLAttributes: { [key: string]: any; }; } declare module '@tiptap/core' { interface Commands { iframe: { /** * Add an iframe */ setIframe: (options?: { src: string; }) => ReturnType; insertIframe: (src?: string, className?: string) => ReturnType; setHtml: (value: string) => ReturnType; }; } } export declare const IFrameServerside: Node; //# sourceMappingURL=IFrameServerside.d.ts.map