import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { RemoteData } from "./RemoteData"; import { TimesheetEntryEmployee } from "./TimesheetEntryEmployee"; export declare const TimesheetEntry: core.serialization.ObjectSchema; export declare namespace TimesheetEntry { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; employee?: TimesheetEntryEmployee.Raw | null; hours_worked?: number | null; start_time?: string | null; end_time?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }