import { CreateDropboxTransferOutput } from "./CreateDropboxTransfer"; import { MissingSenderError, MissingReceiversError, InvalidDeliveryError, InvalidAvailabilityDurationError, InvalidParameterError, PasswordDoesNotMatchError, InvalidSubscriptionError, EmailNotAllowedError, OwnerUsageExceededError, PasswordRequiredError, TeamConfigurationError, DropboxDisabledError, DropboxDeletedError, DropboxMaxTransferCountError, DropboxMaxBytesUploadedError, CustomUrlAlreadyInUseError } from "./CreateDropboxTransferError"; export type CreateDropboxTransferResponse = CreateDropboxTransferOutput | MissingSenderError | MissingReceiversError | InvalidDeliveryError | InvalidAvailabilityDurationError | InvalidParameterError | PasswordDoesNotMatchError | InvalidSubscriptionError | EmailNotAllowedError | OwnerUsageExceededError | PasswordRequiredError | TeamConfigurationError | DropboxDisabledError | DropboxDeletedError | DropboxMaxTransferCountError | DropboxMaxBytesUploadedError | CustomUrlAlreadyInUseError;