export interface CopyOptions {
readonly cliName?: string;
readonly quiet?: boolean;
}
export type CopyCallback = (status: number) => void;
export declare const copy: (from: string, to: string, cmd: CopyOptions, callback?: CopyCallback) => Promise<number>;