import { ElementHelper } from '../../helpers'; import { ArenaInlineInterface, CommandAction, DefaultPluginOptions } from '../../interfaces'; import Textarena from '../../Textarena'; declare type LinkManage = (ta: Textarena, arena: ArenaInlineInterface, linkbar: ElementHelper) => void; export declare type LinkPluginOptions = DefaultPluginOptions & { moveCursorHandler: LinkManage; commandFunction: (arena: ArenaInlineInterface, linkModal: ElementHelper | undefined) => CommandAction; }; export {};