import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Contact } from "./contact.js"; export type Organization = { abuseContacts?: Array | null | undefined; address?: string | undefined; adminContacts?: Array | null | undefined; city?: string | undefined; country?: string | undefined; handle?: string | undefined; name?: string | undefined; postalCode?: string | undefined; state?: string | undefined; street?: string | undefined; techContacts?: Array | null | undefined; }; /** @internal */ export declare const Organization$inboundSchema: z.ZodType; export declare function organizationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=organization.d.ts.map