/**
 * @jsxRuntime classic
 * @jsx jsx
 * @jsxFrag React.Fragment
 */
import React from 'react';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
import type { BlockControlsPlugin } from '../blockControlsPluginType';
type Props = {
    api: ExtractInjectionAPI<BlockControlsPlugin>;
    editorView: EditorView;
};
export declare const BlockControlsLeftSurfaces: ({ api, editorView }: Props) => React.JSX.Element | null;
export {};
