import { LinkOptions as TiptapLinkOptions } from '@tiptap/extension-link'; import { GeneralOptions } from '../../type'; export interface LinkOptions extends TiptapLinkOptions, GeneralOptions { /** If true, the link will be validated as a URL. In some cases, you may want to allow non-URL links, like email addresses or relative links. */ strictUrl?: boolean; } export declare const Link: import('@tiptap/core').Mark;