import React from 'react'; import type { ToolsKeyType as ConfigToolsKeyType } from './config/toolsConfig'; export type ToolsKeyType = ConfigToolsKeyType; /** * 基础工具栏 */ export declare const BaseToolBar: React.NamedExoticComponent<{ prefix?: string | undefined; showInsertAction?: boolean | undefined; extra?: React.ReactNode[] | undefined; min?: boolean | undefined; readonly?: boolean | undefined; hashId?: string | undefined; hideTools?: ConfigToolsKeyType[] | undefined; showEditor?: boolean | undefined; }>;