import { Address } from './address';
import { CardDetails } from './cardDetails';
import { Name } from './name';
import { SubMerchant } from './subMerchant';
export declare class FundRecipient {
    'billingAddress'?: Address;
    'paymentMethod'?: CardDetails;
    /**
    * the email address of the person
    */
    'shopperEmail'?: string;
    'shopperName'?: Name;
    /**
    * Required for recurring payments.  Your reference to uniquely identify this shopper, for example user ID or account ID. Minimum length: 3 characters. > Your reference must not include personally identifiable information (PII), for example name or email address.
    */
    'shopperReference'?: string;
    /**
    * This is the `recurringDetailReference` returned in the response when you created the token.
    */
    'storedPaymentMethodId'?: string;
    'subMerchant'?: SubMerchant;
    /**
    * the telephone number of the person
    */
    'telephoneNumber'?: string;
    /**
    * indicates where the money is going
    */
    'walletIdentifier'?: string;
    /**
    * indicates the tax identifier of the fund recepient
    */
    'walletOwnerTaxId'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
