import type { Step } from '@atlaskit/editor-prosemirror/transform';
export declare class InvertableStep {
    readonly step: Step;
    readonly inverted: Step;
    readonly allocation: number;
    constructor(step: Step, inverted: Step, allocation: number);
}
