import { BlotConstructor } from "parchment"; export interface ILinkBlotOptions { onClick?: (event: MouseEvent) => void; onAttach?: (domNode: HTMLElement) => void; onDetach?: (domNode: HTMLElement) => void; } export declare function useNextLinkBlot(options?: ILinkBlotOptions): BlotConstructor;