export declare const isDevPlayground = false;
export declare const DEFAULT_SETTINGS: {
    disableBeforeInput: boolean;
    emptyEditor: boolean;
    isAutocomplete: boolean;
    isCharLimit: boolean;
    isCharLimitUtf8: boolean;
    isMaxLength: boolean;
    isRichText: boolean;
    measureTypingPerf: boolean;
    shouldUseLexicalContextMenu: boolean;
    showNestedEditorTreeView: boolean;
    showTableOfContents: boolean;
    showTreeView: boolean;
    tableCellBackgroundColor: boolean;
    tableCellMerge: boolean;
};
export type SettingName = keyof typeof DEFAULT_SETTINGS;
export type Settings = typeof DEFAULT_SETTINGS;
