import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SocialLink = { /** * Unique identifier of the social link */ id?: string | null | undefined; /** * URL of the social link, e.g. https://www.twitter.com/apideck */ url: string; /** * Type of the social link, e.g. twitter */ type?: string | null | undefined; }; /** @internal */ export declare const SocialLink$inboundSchema: z.ZodType; /** @internal */ export type SocialLink$Outbound = { id?: string | null | undefined; url: string; type?: string | null | undefined; }; /** @internal */ export declare const SocialLink$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SocialLink$ { /** @deprecated use `SocialLink$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SocialLink$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SocialLink$Outbound` instead. */ type Outbound = SocialLink$Outbound; } export declare function socialLinkToJSON(socialLink: SocialLink): string; export declare function socialLinkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sociallink.d.ts.map