import { LogootSRopes } from "../logootsropes";
import { TextOperation } from "./textoperation";
export declare abstract class LogootSOperation {
    abstract readonly author: number;
    abstract execute(doc: LogootSRopes): TextOperation[];
}
