import React from 'react'; export interface CopperProps { imgUrl: string; onCancel: () => void; onDone: (imgUrl: string) => void; } export declare const Copper: React.FC; export default Copper;