import type { PortalProviderAPI } from '@atlaskit/editor-common/portal';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
import type { MentionsPlugin } from '../mentionsPluginType';
import type { MentionPluginOptions } from '../types';
export declare const profileCardRenderer: ({ dom, options, portalProviderAPI, node, api, }: {
    api: ExtractInjectionAPI<MentionsPlugin> | undefined;
    dom: Node;
    node: PMNode;
    options?: MentionPluginOptions;
    portalProviderAPI: PortalProviderAPI;
}) => {
    destroyProfileCard: () => void;
    removeProfileCard: () => void;
};
