import { Value } from '@udecode/plate-common'; import { EditorValue } from '../types'; import { SlateSchema } from './types'; /** type guard to distinct slate format */ export declare const isSlateSchema: (value: EditorValue) => value is SlateSchema; /** migrate deprecated slate format if needed */ export declare const getMigratedPlateValue: (value: EditorValue) => Value | undefined; /** type guard to distinct plate format */ export declare const isPlateValue: (value: EditorValue) => value is Value; //# sourceMappingURL=utils.d.ts.map