import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
import type { MentionProvider } from '@atlaskit/mention/resource';
import type { MentionsPlugin } from '../mentionsPluginType';
interface Props {
    api: ExtractInjectionAPI<MentionsPlugin> | undefined;
    editorView: EditorView;
    mentionProvider: Promise<MentionProvider> | undefined;
}
export declare const InlineInvitePopupContainer: ({ mentionProvider, api, editorView, }: Props) => JSX.Element | null;
export {};
