import type { IntlShape } from 'react-intl';
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
import type { Command, FloatingToolbarDropdown } from '@atlaskit/editor-common/types';
type Props = {
    activePanelType?: string;
    editorAnalyticsAPI: EditorAnalyticsAPI | undefined;
    formatMessage: IntlShape['formatMessage'];
};
export declare const panelTypeDropdown: ({ activePanelType, editorAnalyticsAPI, formatMessage, }: Props) => FloatingToolbarDropdown<Command>;
export {};
