import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum InputCreatorIdType { Unverified = "unverified" } export type InputCreatorId1 = { type: InputCreatorIdType; value: string; }; export type InputCreatorId = InputCreatorId1 | string; /** @internal */ export declare const InputCreatorIdType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const InputCreatorIdType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace InputCreatorIdType$ { /** @deprecated use `InputCreatorIdType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `InputCreatorIdType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const InputCreatorId1$inboundSchema: z.ZodType; /** @internal */ export type InputCreatorId1$Outbound = { type: string; value: string; }; /** @internal */ export declare const InputCreatorId1$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 InputCreatorId1$ { /** @deprecated use `InputCreatorId1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InputCreatorId1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InputCreatorId1$Outbound` instead. */ type Outbound = InputCreatorId1$Outbound; } export declare function inputCreatorId1ToJSON(inputCreatorId1: InputCreatorId1): string; export declare function inputCreatorId1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InputCreatorId$inboundSchema: z.ZodType; /** @internal */ export type InputCreatorId$Outbound = InputCreatorId1$Outbound | string; /** @internal */ export declare const InputCreatorId$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 InputCreatorId$ { /** @deprecated use `InputCreatorId$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InputCreatorId$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InputCreatorId$Outbound` instead. */ type Outbound = InputCreatorId$Outbound; } export declare function inputCreatorIdToJSON(inputCreatorId: InputCreatorId): string; export declare function inputCreatorIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=inputcreatorid.d.ts.map