import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { Deduction } from "./Deduction"; import { Earning } from "./Earning"; import { EmployeePayrollRunEmployee } from "./EmployeePayrollRunEmployee"; import { EmployeePayrollRunPayrollRun } from "./EmployeePayrollRunPayrollRun"; import { RemoteData } from "./RemoteData"; import { Tax } from "./Tax"; export declare const EmployeePayrollRun: core.serialization.ObjectSchema; export declare namespace EmployeePayrollRun { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; employee?: EmployeePayrollRunEmployee.Raw | null; payroll_run?: EmployeePayrollRunPayrollRun.Raw | null; gross_pay?: number | null; net_pay?: number | null; start_date?: string | null; end_date?: string | null; check_date?: string | null; earnings?: Earning.Raw[] | null; deductions?: Deduction.Raw[] | null; taxes?: Tax.Raw[] | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }