import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { RemoteData } from "./RemoteData"; import { TimeOffBalanceEmployee } from "./TimeOffBalanceEmployee"; import { TimeOffBalancePolicyType } from "./TimeOffBalancePolicyType"; export declare const TimeOffBalance: core.serialization.ObjectSchema; export declare namespace TimeOffBalance { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; employee?: TimeOffBalanceEmployee.Raw | null; balance?: number | null; used?: number | null; policy_type?: TimeOffBalancePolicyType.Raw | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }