import { LabelExtension } from "./LabelModel"; export interface LabelProtocolOptions { scheme: string; optionalSlashes?: boolean; } export interface LabelOptions { /** These are the values passed into the HTML through the Tiptap extension. */ htmlAttributes: Record; } declare module "@tiptap/core" { interface Commands { Label: { setLabel: (attributes: { label: string; }) => ReturnType; unsetLabel: () => ReturnType; }; } } export declare const Label: LabelExtension;