export declare const copyFileAsync: ({ from, to, }: {
    from: string;
    to: string;
}) => Promise<void>;
