declare module '@tiptap/core' { interface Commands { anchor: { /** * Set an anchor mark */ setAnchor: (data: { anchor: string; defaultName: string; }) => ReturnType; /** * Unset an anchor mark */ unsetAnchor: () => ReturnType; /** * Scroll view to anchor */ scrollToAnchor: (anchor: string) => ReturnType; }; } } export declare const anchor: import("ricos-types").RicosMarkExtension<{ HTMLAttributes: Record; inclusive: boolean; }, unknown>; //# sourceMappingURL=anchor.d.ts.map