import { CountryEnum } from '../nichandle/CountryEnum';
import { EmployeesNumberEnum } from './EmployeesNumberEnum';
import { PartnerTypeEnum } from './PartnerTypeEnum';
/** Account Entity */
export interface Account {
    /** @deprecated DEPRECATED - Account City */
    city?: string;
    /** Company turnover (in euros) */
    companyTurnover?: number;
    /** @deprecated DEPRECATED - Account Country */
    country?: CountryEnum;
    /** Account Name */
    name: string;
    /** Number of employees */
    numberOfEmployees?: EmployeesNumberEnum;
    /** Partner Type */
    partnerType?: PartnerTypeEnum;
    /** In what year was your company established? */
    yearEstablished?: string;
}
//# sourceMappingURL=Account.d.ts.map