import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { DependentGender } from "./DependentGender"; import { DependentRelationship } from "./DependentRelationship"; import { RemoteData } from "./RemoteData"; export declare const Dependent: core.serialization.ObjectSchema; export declare namespace Dependent { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; first_name?: string | null; middle_name?: string | null; last_name?: string | null; relationship?: DependentRelationship.Raw | null; employee?: string | null; date_of_birth?: string | null; gender?: DependentGender.Raw | null; phone_number?: string | null; home_location?: string | null; is_student?: boolean | null; ssn?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }