import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
type ExperienceOptions = {
    dispatchAnalyticsEvent: DispatchAnalyticsEvent;
    refs: {
        containerElement?: HTMLElement;
        popupsMountPoint?: HTMLElement;
        wrapperElement?: HTMLElement;
    };
};
export declare const getMenuAndToolbarExperiencesPlugin: ({ refs, dispatchAnalyticsEvent, }: ExperienceOptions) => SafePlugin;
export {};
