import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LinkedFolder = { /** * A unique identifier for an object. */ id: string; /** * The name of the folder */ name?: string | null | undefined; }; /** @internal */ export declare const LinkedFolder$inboundSchema: z.ZodType; /** @internal */ export type LinkedFolder$Outbound = { id: string; name?: string | null | undefined; }; /** @internal */ export declare const LinkedFolder$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 LinkedFolder$ { /** @deprecated use `LinkedFolder$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedFolder$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedFolder$Outbound` instead. */ type Outbound = LinkedFolder$Outbound; } export declare function linkedFolderToJSON(linkedFolder: LinkedFolder): string; export declare function linkedFolderFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedfolder.d.ts.map