import { ITextSelection } from "../_types/ITextSelection"; import { ITextEditTarget } from "./_types/ITextEditTarget"; /** * Inserts the given text into the text field * @param targetField The text field to insert the text into * @param text The text to be inserted * @param caret The caret to insert the text at */ export declare function insertText(targetField: ITextEditTarget, text: string, caret?: ITextSelection): void; //# sourceMappingURL=insertText.d.ts.map