import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { ClientFacingProvider } from "./ClientFacingProvider.js"; export declare const ProfileInDb: core.serialization.ObjectSchema; export declare namespace ProfileInDb { interface Raw { id: string; data?: unknown; user_id: string; source_id: number; priority_id?: number | null; source: ClientFacingProvider.Raw; created_at?: string | null; updated_at?: string | null; } }