import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetOwnersRequest = { /** * Collection ID */ id: string; /** * Continuation token from the previous response */ continuation?: string | undefined; /** * The number of results to return */ size?: number | undefined; }; /** @internal */ export declare const GetOwnersRequest$inboundSchema: z.ZodType; /** @internal */ export type GetOwnersRequest$Outbound = { id: string; continuation?: string | undefined; size?: number | undefined; }; /** @internal */ export declare const GetOwnersRequest$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 GetOwnersRequest$ { /** @deprecated use `GetOwnersRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetOwnersRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetOwnersRequest$Outbound` instead. */ type Outbound = GetOwnersRequest$Outbound; } export declare function getOwnersRequestToJSON(getOwnersRequest: GetOwnersRequest): string; export declare function getOwnersRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getowners.d.ts.map