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

export declare const serializeEditorState: (payload: EditorStateType, editorSettings?: EditorSetting[]) => Omit<EditorStateDbDataType, "data_changes"> | null;
