declare const command: { name: string; /** * Load a background (main) image * @param {Graphics} graphics - Graphics instance * @param {string} imageName - Image name * @param {string} imgUrl - Image Url * @returns {Promise} */ execute(graphics: any, imageName: any, imgUrl: any): any; /** * @param {Graphics} graphics - Graphics instance * @returns {Promise} */ undo(graphics: any): any; }; export default command;