import React from 'react'; import type { ExtractInjectionAPI, UiComponentFactoryParams } from '@atlaskit/editor-common/types'; import type { EditorView } from '@atlaskit/editor-prosemirror/view'; import type { EmojiPlugin } from '../emojiPluginType'; type InlineEmojiPopupProps = Pick & { api: ExtractInjectionAPI; editorView: EditorView; }; export declare const InlineEmojiPopupOld: ({ api, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, editorView, onClose, }: InlineEmojiPopupProps & { onClose: () => void; }) => React.JSX.Element | null; export declare const InlineEmojiPopup: React.MemoExoticComponent<({ api, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, editorView, }: InlineEmojiPopupProps) => React.JSX.Element | null>; export {};