import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { TimesheetEntryRequestEmployee } from "./TimesheetEntryRequestEmployee"; export declare const TimesheetEntryRequest: core.serialization.ObjectSchema; export declare namespace TimesheetEntryRequest { interface Raw { employee?: TimesheetEntryRequestEmployee.Raw | null; hours_worked?: number | null; start_time?: string | null; end_time?: string | null; integration_params?: Record | null; linked_account_params?: Record | null; } }