export declare type EditorMode = 'editor' | 'tree'; export interface StandardEditorParams { content: string | null; save: (str: string) => void; fontSize: number; }