import type * as CandidApi from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { Gender } from "./Gender"; export declare const IndividualBaseOptional: core.serialization.ObjectSchema; export declare namespace IndividualBaseOptional { interface Raw { first_name?: string | null; last_name?: string | null; gender?: Gender.Raw | null; } }