import React from 'react';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
import type { BreakoutPlugin } from '../breakoutPluginType';
type GuidelineLabelProps = {
    api: ExtractInjectionAPI<BreakoutPlugin> | undefined;
    boundariesElement?: HTMLElement;
    editorView: EditorView;
    mountPoint?: HTMLElement;
    scrollableElement?: HTMLElement;
};
export declare const GuidelineLabel: ({ api, editorView, mountPoint, boundariesElement, scrollableElement, }: GuidelineLabelProps) => React.JSX.Element | null;
export {};
