import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UnifiedId = { /** * The unique identifier of the resource */ id: string; }; /** @internal */ export declare const UnifiedId$inboundSchema: z.ZodType; /** @internal */ export type UnifiedId$Outbound = { id: string; }; /** @internal */ export declare const UnifiedId$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 UnifiedId$ { /** @deprecated use `UnifiedId$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UnifiedId$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UnifiedId$Outbound` instead. */ type Outbound = UnifiedId$Outbound; } export declare function unifiedIdToJSON(unifiedId: UnifiedId): string; export declare function unifiedIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=unifiedid.d.ts.map