import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { ClientFacingSource } from "./ClientFacingSource.js"; import { Gender } from "./Gender.js"; import { Sex } from "./Sex.js"; export declare const ClientFacingProfile: core.serialization.ObjectSchema; export declare namespace ClientFacingProfile { interface Raw { id: string; user_id: string; height?: number | null; birth_date?: string | null; wheelchair_use?: boolean | null; gender?: Gender.Raw | null; sex?: Sex.Raw | null; source: ClientFacingSource.Raw; created_at: string; updated_at: string; } }