import { jsx } from '@atlaskit/css';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { SurfaceContext } from '@atlaskit/editor-ui-control-model/types';
import type { BlockControlsPlugin } from '../blockControlsPluginType';
type Props = {
    api: ExtractInjectionAPI<BlockControlsPlugin> | undefined;
    surfaceContext?: SurfaceContext;
};
export declare const BlockControlsSurfaceDragHandle: ({ api, surfaceContext, }: Props) => jsx.JSX.Element | null;
export {};
