import * as React from 'react'; import { Layer } from './layer'; import { EditorState, EditorStateConfigEntity, PlaygroundConfigEntity, ToolbarConfigEntity } from './config'; /** * 工具条绘制 */ export declare class ToolbarLayer extends Layer { readonly node: HTMLDivElement; protected playgroundConfigEntity: PlaygroundConfigEntity; protected toolbarConfig: ToolbarConfigEntity; protected editorStateConfig: EditorStateConfigEntity; get currentState(): EditorState | undefined; onReady(): void; draw(): React.JSX.Element; } //# sourceMappingURL=toolbar-layer.d.ts.map