import { Address } from './address';
import { Name } from './name';
export declare class FundOrigin {
    'billingAddress'?: Address;
    'shopperName'?: Name;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
