/// autogenerated by protoc-plugin-js import type { AccountType } from './AccountType' import type { GovernanceTransferType } from './GovernanceTransferType' import type { OneOffTransfer } from './OneOffTransfer' import type { RecurringTransfer } from './RecurringTransfer' export * from './NewTransferConfiguration/encode.js' export * from './NewTransferConfiguration/decode.js' export type NewTransferConfiguration = { sourceType: AccountType source: string transferType: GovernanceTransferType amount: string asset: string fractionOfBalance: string destinationType: AccountType destination: string kind: { oneOff: OneOffTransfer } | { recurring: RecurringTransfer } | null }