import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListClusterOrgsRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export declare const ListClusterOrgsStatus: { readonly Active: "active"; readonly Suspended: "suspended"; readonly Deleted: "deleted"; }; export type ListClusterOrgsStatus = ClosedEnum; export type Organizations = { id: string; slug: string; name: string; logo: string | null; status: ListClusterOrgsStatus; createdAt: string; memberCount?: number | undefined; apiKeyCount?: number | undefined; }; /** * OK */ export type ListClusterOrgsResponseBody = { organizations: Array; }; /** @internal */ export declare const ListClusterOrgsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListClusterOrgsRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListClusterOrgsRequest$outboundSchema: z.ZodType; export declare function listClusterOrgsRequestToJSON(listClusterOrgsRequest: ListClusterOrgsRequest): string; export declare function listClusterOrgsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListClusterOrgsStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListClusterOrgsStatus$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Organizations$inboundSchema: z.ZodType; /** @internal */ export type Organizations$Outbound = { id: string; slug: string; name: string; logo: string | null; status: string; createdAt: string; memberCount?: number | undefined; apiKeyCount?: number | undefined; }; /** @internal */ export declare const Organizations$outboundSchema: z.ZodType; export declare function organizationsToJSON(organizations: Organizations): string; export declare function organizationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListClusterOrgsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ListClusterOrgsResponseBody$Outbound = { organizations: Array; }; /** @internal */ export declare const ListClusterOrgsResponseBody$outboundSchema: z.ZodType; export declare function listClusterOrgsResponseBodyToJSON(listClusterOrgsResponseBody: ListClusterOrgsResponseBody): string; export declare function listClusterOrgsResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listclusterorgs.d.ts.map