import { ContractType } from './ContractType';
import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class TransferFromCustodialAddressBatch extends PrivateKeyOrSignatureId {
    custodialAddress: string;
    chain: Currency;
    tokenAddress?: string[];
    contractType: ContractType[];
    recipient: string[];
    amount?: string[];
    tokenId?: string[];
    nonce?: number;
    fee?: Fee;
    feeCurrency?: Currency;
}
