import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { ClientFacingResource } from "./ClientFacingResource.js"; import { SourceAuthType } from "./SourceAuthType.js"; export declare const ClientFacingProviderDetailed: core.serialization.ObjectSchema; export declare namespace ClientFacingProviderDetailed { interface Raw { name: string; slug: string; description: string; logo?: string | null; auth_type?: SourceAuthType.Raw | null; supported_resources?: ClientFacingResource.Raw[] | null; } }