import { EditorSetting, EditorStateType } from '../../types';
import { EditorStateDbDataType } from './editorDbStateType';
import { ElementModel } from '../../editorComponents';

export declare const deserializeEditorState: (data: EditorStateDbDataType, currentEditorState: EditorStateType | undefined, componentsIn: ElementModel[], disableThemeReload?: boolean) => EditorStateType & {
    editor_settings: EditorSetting[];
};
