import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
export declare enum PartyTypeCategory {
    CONSULTANT = "CONSULTANT",
    CONTRACTOR = "CONTRACTOR",
    VENDOR = "VENDOR"
}
export declare class PartyType extends BaseEntity {
    id: number;
    type_name: string;
    type_category: PartyTypeCategory;
    company_id: number;
    company: Company;
}
