import TransferOptions from './TransferOptions';
import RemoteFile from '../common/RemoteFile';
/**
 * Options for building the {@link Download} object.
 */
interface DownloadOptions extends TransferOptions {
    /**
     * One or more files to be downloaded.
     */
    files: RemoteFile[];
}
export default DownloadOptions;
//# sourceMappingURL=DownloadOptions.d.ts.map