import * as z from "zod/v4-mini"; import { ClosedEnum } from "../types/enums.js"; export declare const WorkOSIdentifySourceName: { readonly WorkOS: "WorkOS"; }; export type WorkOSIdentifySourceName = ClosedEnum; export type WorkOSIdentifySource = { name: WorkOSIdentifySourceName; type: "workos"; }; /** @internal */ export declare const WorkOSIdentifySourceName$outboundSchema: z.ZodMiniEnum; /** @internal */ export type WorkOSIdentifySource$Outbound = { name: string; type: "workos"; }; /** @internal */ export declare const WorkOSIdentifySource$outboundSchema: z.ZodMiniType; export declare function workOSIdentifySourceToJSON(workOSIdentifySource: WorkOSIdentifySource): string;