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