import { ITextField } from "../../_types/ITextField"; import { TextEditCommand } from "./TextEditCommand"; import { IRetrievableArgument } from "./_types/IRetrievableArgument"; /** A command to remove text at the caret */ export declare class RemoveTextCommand extends TextEditCommand { /** * Creates a new command to remove text from the text field in the given direction * @param targetField The text field to remove the text from * @param direction The amount of characters to remove and the direction (-1 == backspace) */ constructor(textField: ITextField, direction?: IRetrievableArgument); } //# sourceMappingURL=RemoveTextCommand.d.ts.map