import { RichTextConfig, ToolbarPreset } from './types'; /** 默认配置 */ export declare const DEFAULT_RICHTEXT_CONFIG: RichTextConfig; /** 工具栏预设 */ export declare const TOOLBAR_PRESETS: ToolbarPreset[]; /** 协同用户颜色调色板 */ export declare const COLLAB_USER_COLORS: string[]; /** 创建协同用户 */ export declare const createCollabUser: (overrides?: Partial<{ id: string; name: string; avatar: string; color: string; }>) => { id: string; name: any; avatar?: string; color: string; };