import { ITextField } from "../../_types/ITextField"; import { TextEditCommand } from "./TextEditCommand"; import { IRetrievableArgument } from "./_types/IRetrievableArgument"; /** A command to insert some simple text at the caret */ export declare class InsertTextCommand extends TextEditCommand { /** * Creates a new command to insert the given text into the text field * @param targetField The text field to insert the text into * @param content The text to be inserted */ constructor(textField: ITextField, content: IRetrievableArgument); } //# sourceMappingURL=InsertTextCommand.d.ts.map