import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
import { Employee } from "../../employees/entities/employee.entity";
export declare class ClockInRecord extends BaseEntity {
    id: number;
    company_id: number;
    employee_id: number;
    clock_in: Date;
    clock_out: Date;
    duration: number;
    company: Company;
    employee: Employee;
}
