export interface DrawIoOptions { inline: boolean; allowBase64: boolean; HTMLAttributes: Record; drawioUrl: string; } declare module "@tiptap/core" { interface Commands { drawio: { insertDrawIo: () => ReturnType; updateDrawIo: (src: string, xml: string) => ReturnType; setDrawIoAlign: (align: 'left' | 'center' | 'right') => ReturnType; setDrawIoWidth: (width: number) => ReturnType; }; } } export declare const DrawIo: any; export default DrawIo;