import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { SourceAuthType } from "./SourceAuthType.js"; import { SourceType } from "./SourceType.js"; export declare const Source: core.serialization.ObjectSchema; export declare namespace Source { interface Raw { name: string; slug: string; description: string; logo: string; group?: string | null; oauth_url?: string | null; auth_type?: SourceAuthType.Raw | null; source_type?: SourceType.Raw | null; is_active?: boolean | null; backfill_num_days?: number | null; id: number; } }