import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LinkedFrom = { acceptedAt?: number | undefined; acceptedString?: string | undefined; name?: string | undefined; pcid?: string | undefined; scopes?: Array | undefined; }; /** @internal */ export declare const LinkedFrom$inboundSchema: z.ZodType; /** @internal */ export type LinkedFrom$Outbound = { acceptedAt?: number | undefined; acceptedString?: string | undefined; name?: string | undefined; pcid?: string | undefined; scopes?: Array | undefined; }; /** @internal */ export declare const LinkedFrom$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 LinkedFrom$ { /** @deprecated use `LinkedFrom$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedFrom$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedFrom$Outbound` instead. */ type Outbound = LinkedFrom$Outbound; } export declare function linkedFromToJSON(linkedFrom: LinkedFrom): string; export declare function linkedFromFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedfrom.d.ts.map