import { Address } from "./address";
import { Card } from "./card";
import { Name } from "./name";
export declare class FundSource {
    /**
    * A map of name-value pairs for passing additional or industry-specific data.
    */
    "additionalData"?: {
        [key: string]: string;
    };
    "billingAddress"?: Address | null;
    "card"?: Card | null;
    /**
    * Email address of the person.
    */
    "shopperEmail"?: string;
    "shopperName"?: Name | null;
    /**
    * Phone number of the person
    */
    "telephoneNumber"?: string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
