import type { Node } from '@atlaskit/editor-prosemirror/model'; import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state'; export declare const getLinkPreferencesURLFromENV: () => string; export declare const getActiveLinkMark: (state: EditorState | Transaction) => { node: Node; pos: number; } | undefined; export { isTextAtPos } from './isTextAtPos'; export { isLinkAtPos } from './isLinkAtPos';