declare const command: { name: string; /** * Change a text * @param {Graphics} graphics - Graphics instance * @param {number} id - object id * @param {string} text - Changing text * @returns {Promise} */ execute(graphics: any, id: any, text: any): any; /** * @param {Graphics} graphics - Graphics instance * @returns {Promise} */ undo(graphics: any): any; }; export default command;