import { Extension } from '../../externals.js'; declare module '@tiptap/core' { interface Commands { htmlDatasetAttributes: { setId: (id?: string, type?: string) => ReturnType; toggleId: (id?: string, type?: string) => ReturnType; unsetId: (type?: string) => ReturnType; }; } } export interface UmbTiptapHtmlDatasetAttributesOptions { types: Array; } export declare const HtmlDatasetAttributes: Extension;