import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
import { PartyType } from "../../party-types/entities/party-type.entity";
import { Project } from "../../projects/entities/project.entity";
export declare class Consultant extends BaseEntity {
    id: number;
    consultant_name: string;
    company_id: number;
    type_id: number;
    phone_number: string;
    email: string;
    project_id: number;
    notes: string;
    company: Company;
    partyType: PartyType;
    project: Project;
}
