declare const command: { name: string; /** * Clear all objects without background (main) image * @param {Graphics} graphics - Graphics instance * @returns {Promise} */ execute(graphics: any): Promise; /** * @param {Graphics} graphics - Graphics instance * @returns {Promise} * @ignore */ undo(graphics: any): Promise; }; export default command;