import { Operation } from "slate";
import { ReactEditor } from "slate-react";
export declare type DevtoolsEditor = {
    devtools_history: {
        normalizing: boolean;
        op: Operation;
    }[];
    devtools_run: (op: Operation) => void;
    devtools_reset: () => void;
};
export declare const withDevtools: <T extends ReactEditor>(editor: T) => T & DevtoolsEditor;
//# sourceMappingURL=withDevtools.d.ts.map