import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
import { Employee } from "../../employees/entities/employee.entity";
import { Project } from "../../projects/entities/project.entity";
import { ActivityType } from "../../activity-types/entities/activity-type.entity";
export declare class TimeTracking extends BaseEntity {
    id: number;
    company_id: number;
    employee_id: number;
    project_id: number;
    activity_type_id: number;
    description: string;
    start_time: Date;
    end_time: Date;
    total_minutes: number;
    cost: number;
    latitude: number;
    longitude: number;
    address: string;
    company: Company;
    employee: Employee;
    project: Project;
    activityType: ActivityType;
}
