import type { ToolbarUIComponentFactory } from '@atlaskit/editor-common/types';
import type { EditorState } from '@atlaskit/editor-prosemirror/state';
import type { ComponentRegistry } from '../primaryToolbarPluginType';
type GetToolbarComponentsOptions = {
    componentRegistry: ComponentRegistry;
    contextualFormattingEnabled?: boolean;
    editorState: EditorState;
};
export declare const getToolbarComponents: ({ componentRegistry, editorState, contextualFormattingEnabled, }: GetToolbarComponentsOptions) => ToolbarUIComponentFactory[];
export {};
