export declare class CreateWithdrawal {
    senderAccountId: string;
    address: string;
    amount: string;
    fee?: string;
    compliant?: boolean;
    paymentId?: string;
    senderNote?: string;
    multipleAmounts?: string[];
    attr?: string;
}
