/**
 * The common option set when generating uploads or downloads in the {@link TransferFactory}
 */
interface TransferOptions {
    /**
     * The id of the portal which represents either the source or the destination of the transfer.
     */
    portalId: string;
    /**
     * Force the transfer initialization even if pre-checks are not passed.
     *
     * For example, the Signiant App must be installed to support an accelerated transfer. The first time
     * a download is initiated on a specific browser it is unknown whether the Signiant App is installed.
     * Use this pre-check to attempt to connect to the app with unknown installation status.
     *
     * Defaults to false.
     */
    force?: boolean;
}
export default TransferOptions;
//# sourceMappingURL=TransferOptions.d.ts.map