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