import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Three = string | number; export type UserTags = string | number | Array; /** @internal */ export declare const Three$inboundSchema: z.ZodType; /** @internal */ export type Three$Outbound = string | number; /** @internal */ export declare const Three$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 Three$ { /** @deprecated use `Three$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Three$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Three$Outbound` instead. */ type Outbound = Three$Outbound; } export declare function threeToJSON(three: Three): string; export declare function threeFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UserTags$inboundSchema: z.ZodType; /** @internal */ export type UserTags$Outbound = string | number | Array; /** @internal */ export declare const UserTags$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 UserTags$ { /** @deprecated use `UserTags$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserTags$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserTags$Outbound` instead. */ type Outbound = UserTags$Outbound; } export declare function userTagsToJSON(userTags: UserTags): string; export declare function userTagsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=usertags.d.ts.map