/// import { types } from '@curvenote/schema'; import { ActionProps } from './utils'; export declare function useLinkActions(stateId: any, viewId: string | null): { attrs: types.LinkAttrs | null; tooltip: string; bounds: { from: number; to: number; mark: import("prosemirror-model").Mark; } | null; onOpen: () => Window | null; onDelete: () => void; onEdit: (newHref: string) => void; }; declare function LinkActions(props: ActionProps): JSX.Element | null; export default LinkActions;