export declare abstract class BaseTransferEthErc20Offchain {
    senderAccountId: string;
    address: string;
    amount: string;
    compliant?: boolean;
    paymentId?: string;
    senderNote?: string;
    nonce?: number;
    gasPrice?: string;
    gasLimit?: string;
}
