import type { ClassNameProps } from "../classname.js"; import { type ToolbarData, type ToolbarItemData } from "../toolbar/index.js"; import type { EditorInt } from "./Editor.js"; import type { MarkdownEditorMode } from "./types.js"; export type ToolbarViewProps = ClassNameProps & { editor: EditorInt; editorMode: MarkdownEditorMode; toolbarEditor: T; toolbarFocus: () => void; toolbarConfig: ToolbarData; settingsVisible?: boolean; hiddenActionsConfig?: ToolbarItemData[]; children?: React.ReactNode; stickyToolbar: boolean; }; export declare function ToolbarView({ editor, editorMode, toolbarEditor, toolbarFocus, toolbarConfig, hiddenActionsConfig, settingsVisible, className, children, stickyToolbar, }: ToolbarViewProps): JSX.Element;