import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
import { Employee } from "../../employees/entities/employee.entity";
import { Auth } from "../../auth/entities/auth.entity";
export declare class MisReportRatingFeedback extends BaseEntity {
    id: number;
    company_id: number;
    employee_id: number;
    business_feedback: string;
    technical_feedback: string;
    personal_feedback: string;
    business_rating: number;
    technical_rating: number;
    personal_rating: number;
    average_rating: number;
    action_by_id: number;
    month: number;
    year: number;
    company: Company;
    employee: Employee;
    actionBy: Auth;
}
