import { IAction } from "./IAction";
import { Store } from "../Store/Store";
export declare namespace Content {
    class SpliceAction implements IAction {
        readonly startIndex: number;
        readonly removeLength: number;
        readonly insert: string;
        constructor(startIndex: number, removeLength: number, insert: string);
        apply(store: Store): void;
    }
    function Splice(startIndex: number, removeLength: number, insert: string): SpliceAction;
}
