import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Owner = { /** * ID of the owner */ id?: string | undefined; /** * Email of the owner */ email?: string | null | undefined; /** * Name of the owner */ name?: string | null | undefined; }; /** @internal */ export declare const Owner$inboundSchema: z.ZodType; /** @internal */ export type Owner$Outbound = { id?: string | undefined; email?: string | null | undefined; name?: string | null | undefined; }; /** @internal */ export declare const Owner$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 Owner$ { /** @deprecated use `Owner$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Owner$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Owner$Outbound` instead. */ type Outbound = Owner$Outbound; } export declare function ownerToJSON(owner: Owner): string; export declare function ownerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=owner.d.ts.map