import { jsx } from '@emotion/react';
import type { AnchorRectCache } from '../pm-plugins/utils/anchor-utils';
import type { DropTargetProps } from './drop-target';
export declare const InlineDropTarget: ({ api, nextNode, position, anchorRectCache, getPos, }: DropTargetProps & {
    anchorRectCache?: AnchorRectCache;
    position: 'left' | 'right';
}) => jsx.JSX.Element;
