export interface CopyOption {
    entry?: string[];
    output?: string;
    watch?: boolean;
}
export declare function copy(options?: CopyOption): Promise<void>;
