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"; export declare const SourceLink: core.serialization.ObjectSchema; export declare namespace SourceLink { interface Raw { id: number; name: string; slug: string; description: string; logo: string; oauth_url?: string | null; auth_type?: SourceAuthType.Raw | null; form_components?: Record | null; } }