import type { LinkData } from 'ricos-schema'; import type { DeepPartial } from 'utility-types'; declare module '@tiptap/core' { interface Commands { link: { /** * Set a link mark */ setLink: (attributes: DeepPartial) => ReturnType; /** * Toggle a link mark */ toggleLink: (attributes: DeepPartial) => ReturnType; /** * Unset a link mark */ unsetLink: () => ReturnType; }; } } export declare const link: import("ricos-types").RicosMarkExtension; //# sourceMappingURL=link.d.ts.map