import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CollectionTagInput = { /** * A unique identifier for an object. */ id: string | null; }; /** @internal */ export declare const CollectionTagInput$inboundSchema: z.ZodType; /** @internal */ export type CollectionTagInput$Outbound = { id: string | null; }; /** @internal */ export declare const CollectionTagInput$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 CollectionTagInput$ { /** @deprecated use `CollectionTagInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionTagInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionTagInput$Outbound` instead. */ type Outbound = CollectionTagInput$Outbound; } export declare function collectionTagInputToJSON(collectionTagInput: CollectionTagInput): string; export declare function collectionTagInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectiontaginput.d.ts.map