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