import { CountryEnum } from '../coreTypes/CountryEnum';
/** Contact information structure */
export interface Contact {
    /** Contact address */
    address?: string;
    /** Contact city */
    city?: string;
    /** Contact country */
    country?: CountryEnum;
    /**  */
    email?: string;
    /** Contact firstname */
    firstname?: string;
    /** Contact name */
    name?: string;
    /** Contact organisation */
    organisation?: string;
    /** Contact phone */
    phone?: string;
    /** Contact zip */
    zip?: string;
}
//# sourceMappingURL=Contact.d.ts.map