declare const command: { name: string; /** * resize the canvas with given dimension * @param {Graphics} graphics - Graphics instance * @param {{width: number, height: number}} dimension - Max width & height * @returns {Promise} */ execute(graphics: any, dimension: any): Promise; /** * @param {Graphics} graphics - Graphics instance * @returns {Promise} */ undo(graphics: any): Promise; }; export default command;