import { AcceptanceStatusEnum } from './AcceptanceStatusEnum';
import { Account } from './Account';
import { AreaOfExpertiseEnum } from './AreaOfExpertiseEnum';
import { Contact } from './Contact';
import { PartnerShip } from './PartnerShip';
/** Partner Entity */
export interface Partner {
    /** Acceptance Status */
    acceptanceStatus?: AcceptanceStatusEnum;
    /** Account */
    account: Account;
    /** @deprecated DEPRECATED - Area of Expertise */
    areaOfExpertise?: AreaOfExpertiseEnum[];
    /** Contact */
    contact: Contact;
    /** @deprecated DEPRECATED - Why you want to take part in OVH's Partners Program */
    partnersProgramReason?: string;
    /**  How the PartnerShip will Growth */
    partnership: PartnerShip;
    /** @deprecated DEPRECATED - Sales Projection (in euros)  */
    salesProjection?: number;
}
//# sourceMappingURL=Partner.d.ts.map