import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SocialNetwork = { /** * Possible values are "twitter", "linkedin". */ name: string; /** * Human-readable profile name. */ profileName?: string | undefined; /** * Link to profile. */ profileUrl: string; }; /** @internal */ export declare const SocialNetwork$inboundSchema: z.ZodType; /** @internal */ export type SocialNetwork$Outbound = { name: string; profileName?: string | undefined; profileUrl: string; }; /** @internal */ export declare const SocialNetwork$outboundSchema: z.ZodType; export declare function socialNetworkToJSON(socialNetwork: SocialNetwork): string; export declare function socialNetworkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=socialnetwork.d.ts.map