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