import { SecretType } from '../../SecretType'; import { Network } from '../../Network'; export declare abstract class BuildTransferRequestBaseDto { walletId: string; to: string; secretType: SecretType; alias?: string; network?: Network; }