import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OwnershipIds = { /** * List of the Ownerships ids */ ids: Array; }; /** @internal */ export declare const OwnershipIds$inboundSchema: z.ZodType; /** @internal */ export type OwnershipIds$Outbound = { ids: Array; }; /** @internal */ export declare const OwnershipIds$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 OwnershipIds$ { /** @deprecated use `OwnershipIds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OwnershipIds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OwnershipIds$Outbound` instead. */ type Outbound = OwnershipIds$Outbound; } export declare function ownershipIdsToJSON(ownershipIds: OwnershipIds): string; export declare function ownershipIdsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ownershipids.d.ts.map