export declare const isLinkActive: (editor: any) => boolean; type LinkDetailObject = { url: string; text: string; inNewTab: boolean; title?: string; }; export declare const getLinkDetail: (editor: any, selection: any) => LinkDetailObject; export declare const unwrapLink: (editor: any) => void; export declare const wrapLink: (editor?: any, url?: any, linkText?: any, newTab?: any, title?: string) => void; export {};