import { AddressEntry } from '../AddressEntry'; import { PhoneNumberEntry } from '../PhoneNumberEntry'; export declare class AccountOwner { email: string; name: string; 'primary-address': AddressEntry; 'primary-phone-number': PhoneNumberEntry; 'contact-type': string; 'date-of-birth': string; sex?: string; 'tax-country': string; 'tax-id-number': string; 'tax-state': string; }