import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const ConfigurationStatus: { readonly Valid: "valid"; readonly Invalid: "invalid"; }; export type ConfigurationStatus = ClosedEnum; export type SummaryModels = { enabled: boolean; connected: number; settingUp: number; needsAttention: number; revoked: number; notConnected: number; }; export type SummaryKeys = { enabled: boolean; connected: number; settingUp: number; needsAttention: number; revoked: number; notConnected: number; }; export type SummaryBuckets = { enabled: boolean; connected: number; settingUp: number; needsAttention: number; revoked: number; notConnected: number; }; export type SummaryRegistry = { enabled: boolean; connected: number; settingUp: number; needsAttention: number; revoked: number; notConnected: number; }; export type SummaryRemoteSandbox = { enabled: boolean; connected: number; settingUp: number; needsAttention: number; revoked: number; notConnected: number; }; export type SummaryCapabilities = { models: SummaryModels; keys: SummaryKeys; buckets: SummaryBuckets; registry: SummaryRegistry; remoteSandbox: SummaryRemoteSandbox; }; export type ProjectCapabilityOverviewSummary = { groups: number; capabilities: SummaryCapabilities; }; export declare const ModelsCapability: { readonly Models: "models"; readonly Keys: "keys"; readonly Buckets: "buckets"; readonly Registry: "registry"; readonly RemoteSandbox: "remoteSandbox"; }; export type ModelsCapability = ClosedEnum; export declare const ModelsState: { readonly NotConnected: "not-connected"; readonly SettingUp: "setting-up"; readonly Connected: "connected"; readonly NeedsAttention: "needs-attention"; readonly Revoked: "revoked"; }; export type ModelsState = ClosedEnum; export declare const ModelsPlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Local: "local"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Test: "test"; }; export type ModelsPlatform = ClosedEnum; export declare const ModelsHealth: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type ModelsHealth = ClosedEnum; export type ModelsObservation = { provider: string | null; platform: ModelsPlatform | null; resourceId: string | null; location: string | null; account: string | null; observedAt: Date | null; stale: boolean; partial: boolean; health: ModelsHealth | null; lifecycle: string | null; message: string | null; }; export declare const ModelsAvailability: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type ModelsAvailability = ClosedEnum; export declare const ModelsAccessTest: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type ModelsAccessTest = ClosedEnum; export type ModelsModelCoverage = { publicModelId: string; required: boolean; availability: ModelsAvailability; blockerCodes: Array; accessTest: ModelsAccessTest; accessObservedAt: Date | null; }; export declare const ModelsProvider: { readonly Anthropic: "anthropic"; readonly Databricks: "databricks"; readonly Openai: "openai"; }; export type ModelsProvider = ClosedEnum; export declare const ModelsCredentialStatus: { readonly Pending: "pending"; readonly Valid: "valid"; readonly Invalid: "invalid"; readonly Unknown: "unknown"; }; export type ModelsCredentialStatus = ClosedEnum; export type ModelsDirectProvider = { provider: ModelsProvider; providerEndpoint: string | null; keyFingerprint: string; credentialStatus: ModelsCredentialStatus; credentialCheckedAt: Date | null; catalogObservedAt: Date | null; }; export declare const ModelsRootState: { readonly Pending: "pending"; readonly Ready: "ready"; readonly Revoked: "revoked"; }; export type ModelsRootState = ClosedEnum; export type ModelsRoot = { state: ModelsRootState; createdAt: Date | null; }; export declare const ModelsCredentialPolicy: { readonly PullOnly: "pull-only"; readonly PushAndPull: "push-and-pull"; readonly Mixed: "mixed"; readonly None: "none"; }; export type ModelsCredentialPolicy = ClosedEnum; export type ModelsRegistry = { repositories: number; credentials: number; credentialPolicy: ModelsCredentialPolicy; lastVerifiedAt: Date | null; }; export type GroupModels = { capability: ModelsCapability; enabled: boolean; state: ModelsState; /** * Unique identifier for the deployment. */ deploymentId: string | null; observation: ModelsObservation | null; modelCoverage?: Array | undefined; directProvider?: ModelsDirectProvider | undefined; root?: ModelsRoot | undefined; registry?: ModelsRegistry | undefined; }; export declare const KeysCapability: { readonly Models: "models"; readonly Keys: "keys"; readonly Buckets: "buckets"; readonly Registry: "registry"; readonly RemoteSandbox: "remoteSandbox"; }; export type KeysCapability = ClosedEnum; export declare const KeysState: { readonly NotConnected: "not-connected"; readonly SettingUp: "setting-up"; readonly Connected: "connected"; readonly NeedsAttention: "needs-attention"; readonly Revoked: "revoked"; }; export type KeysState = ClosedEnum; export declare const KeysPlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Local: "local"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Test: "test"; }; export type KeysPlatform = ClosedEnum; export declare const KeysHealth: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type KeysHealth = ClosedEnum; export type KeysObservation = { provider: string | null; platform: KeysPlatform | null; resourceId: string | null; location: string | null; account: string | null; observedAt: Date | null; stale: boolean; partial: boolean; health: KeysHealth | null; lifecycle: string | null; message: string | null; }; export declare const KeysAvailability: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type KeysAvailability = ClosedEnum; export declare const KeysAccessTest: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type KeysAccessTest = ClosedEnum; export type KeysModelCoverage = { publicModelId: string; required: boolean; availability: KeysAvailability; blockerCodes: Array; accessTest: KeysAccessTest; accessObservedAt: Date | null; }; export declare const KeysProvider: { readonly Anthropic: "anthropic"; readonly Databricks: "databricks"; readonly Openai: "openai"; }; export type KeysProvider = ClosedEnum; export declare const KeysCredentialStatus: { readonly Pending: "pending"; readonly Valid: "valid"; readonly Invalid: "invalid"; readonly Unknown: "unknown"; }; export type KeysCredentialStatus = ClosedEnum; export type KeysDirectProvider = { provider: KeysProvider; providerEndpoint: string | null; keyFingerprint: string; credentialStatus: KeysCredentialStatus; credentialCheckedAt: Date | null; catalogObservedAt: Date | null; }; export declare const KeysRootState: { readonly Pending: "pending"; readonly Ready: "ready"; readonly Revoked: "revoked"; }; export type KeysRootState = ClosedEnum; export type KeysRoot = { state: KeysRootState; createdAt: Date | null; }; export declare const KeysCredentialPolicy: { readonly PullOnly: "pull-only"; readonly PushAndPull: "push-and-pull"; readonly Mixed: "mixed"; readonly None: "none"; }; export type KeysCredentialPolicy = ClosedEnum; export type KeysRegistry = { repositories: number; credentials: number; credentialPolicy: KeysCredentialPolicy; lastVerifiedAt: Date | null; }; export type GroupKeys = { capability: KeysCapability; enabled: boolean; state: KeysState; /** * Unique identifier for the deployment. */ deploymentId: string | null; observation: KeysObservation | null; modelCoverage?: Array | undefined; directProvider?: KeysDirectProvider | undefined; root?: KeysRoot | undefined; registry?: KeysRegistry | undefined; }; export declare const BucketsCapability: { readonly Models: "models"; readonly Keys: "keys"; readonly Buckets: "buckets"; readonly Registry: "registry"; readonly RemoteSandbox: "remoteSandbox"; }; export type BucketsCapability = ClosedEnum; export declare const BucketsState: { readonly NotConnected: "not-connected"; readonly SettingUp: "setting-up"; readonly Connected: "connected"; readonly NeedsAttention: "needs-attention"; readonly Revoked: "revoked"; }; export type BucketsState = ClosedEnum; export declare const BucketsPlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Local: "local"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Test: "test"; }; export type BucketsPlatform = ClosedEnum; export declare const BucketsHealth: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type BucketsHealth = ClosedEnum; export type BucketsObservation = { provider: string | null; platform: BucketsPlatform | null; resourceId: string | null; location: string | null; account: string | null; observedAt: Date | null; stale: boolean; partial: boolean; health: BucketsHealth | null; lifecycle: string | null; message: string | null; }; export declare const BucketsAvailability: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type BucketsAvailability = ClosedEnum; export declare const BucketsAccessTest: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type BucketsAccessTest = ClosedEnum; export type BucketsModelCoverage = { publicModelId: string; required: boolean; availability: BucketsAvailability; blockerCodes: Array; accessTest: BucketsAccessTest; accessObservedAt: Date | null; }; export declare const BucketsProvider: { readonly Anthropic: "anthropic"; readonly Databricks: "databricks"; readonly Openai: "openai"; }; export type BucketsProvider = ClosedEnum; export declare const BucketsCredentialStatus: { readonly Pending: "pending"; readonly Valid: "valid"; readonly Invalid: "invalid"; readonly Unknown: "unknown"; }; export type BucketsCredentialStatus = ClosedEnum; export type BucketsDirectProvider = { provider: BucketsProvider; providerEndpoint: string | null; keyFingerprint: string; credentialStatus: BucketsCredentialStatus; credentialCheckedAt: Date | null; catalogObservedAt: Date | null; }; export declare const BucketsRootState: { readonly Pending: "pending"; readonly Ready: "ready"; readonly Revoked: "revoked"; }; export type BucketsRootState = ClosedEnum; export type BucketsRoot = { state: BucketsRootState; createdAt: Date | null; }; export declare const BucketsCredentialPolicy: { readonly PullOnly: "pull-only"; readonly PushAndPull: "push-and-pull"; readonly Mixed: "mixed"; readonly None: "none"; }; export type BucketsCredentialPolicy = ClosedEnum; export type BucketsRegistry = { repositories: number; credentials: number; credentialPolicy: BucketsCredentialPolicy; lastVerifiedAt: Date | null; }; export type GroupBuckets = { capability: BucketsCapability; enabled: boolean; state: BucketsState; /** * Unique identifier for the deployment. */ deploymentId: string | null; observation: BucketsObservation | null; modelCoverage?: Array | undefined; directProvider?: BucketsDirectProvider | undefined; root?: BucketsRoot | undefined; registry?: BucketsRegistry | undefined; }; export declare const RegistryCapability: { readonly Models: "models"; readonly Keys: "keys"; readonly Buckets: "buckets"; readonly Registry: "registry"; readonly RemoteSandbox: "remoteSandbox"; }; export type RegistryCapability = ClosedEnum; export declare const RegistryState: { readonly NotConnected: "not-connected"; readonly SettingUp: "setting-up"; readonly Connected: "connected"; readonly NeedsAttention: "needs-attention"; readonly Revoked: "revoked"; }; export type RegistryState = ClosedEnum; export declare const RegistryPlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Local: "local"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Test: "test"; }; export type RegistryPlatform = ClosedEnum; export declare const RegistryHealth: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type RegistryHealth = ClosedEnum; export type RegistryObservation = { provider: string | null; platform: RegistryPlatform | null; resourceId: string | null; location: string | null; account: string | null; observedAt: Date | null; stale: boolean; partial: boolean; health: RegistryHealth | null; lifecycle: string | null; message: string | null; }; export declare const RegistryAvailability: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type RegistryAvailability = ClosedEnum; export declare const RegistryAccessTest: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type RegistryAccessTest = ClosedEnum; export type RegistryModelCoverage = { publicModelId: string; required: boolean; availability: RegistryAvailability; blockerCodes: Array; accessTest: RegistryAccessTest; accessObservedAt: Date | null; }; export declare const RegistryProvider: { readonly Anthropic: "anthropic"; readonly Databricks: "databricks"; readonly Openai: "openai"; }; export type RegistryProvider = ClosedEnum; export declare const RegistryCredentialStatus: { readonly Pending: "pending"; readonly Valid: "valid"; readonly Invalid: "invalid"; readonly Unknown: "unknown"; }; export type RegistryCredentialStatus = ClosedEnum; export type RegistryDirectProvider = { provider: RegistryProvider; providerEndpoint: string | null; keyFingerprint: string; credentialStatus: RegistryCredentialStatus; credentialCheckedAt: Date | null; catalogObservedAt: Date | null; }; export declare const RegistryRootState: { readonly Pending: "pending"; readonly Ready: "ready"; readonly Revoked: "revoked"; }; export type RegistryRootState = ClosedEnum; export type RegistryRoot = { state: RegistryRootState; createdAt: Date | null; }; export declare const ProjectCapabilityOverviewCredentialPolicy: { readonly PullOnly: "pull-only"; readonly PushAndPull: "push-and-pull"; readonly Mixed: "mixed"; readonly None: "none"; }; export type ProjectCapabilityOverviewCredentialPolicy = ClosedEnum; export type GroupRegistryRegistry = { repositories: number; credentials: number; credentialPolicy: ProjectCapabilityOverviewCredentialPolicy; lastVerifiedAt: Date | null; }; export type GroupRegistry = { capability: RegistryCapability; enabled: boolean; state: RegistryState; /** * Unique identifier for the deployment. */ deploymentId: string | null; observation: RegistryObservation | null; modelCoverage?: Array | undefined; directProvider?: RegistryDirectProvider | undefined; root?: RegistryRoot | undefined; registry?: GroupRegistryRegistry | undefined; }; export declare const RemoteSandboxCapability: { readonly Models: "models"; readonly Keys: "keys"; readonly Buckets: "buckets"; readonly Registry: "registry"; readonly RemoteSandbox: "remoteSandbox"; }; export type RemoteSandboxCapability = ClosedEnum; export declare const RemoteSandboxState: { readonly NotConnected: "not-connected"; readonly SettingUp: "setting-up"; readonly Connected: "connected"; readonly NeedsAttention: "needs-attention"; readonly Revoked: "revoked"; }; export type RemoteSandboxState = ClosedEnum; export declare const RemoteSandboxPlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Local: "local"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Test: "test"; }; export type RemoteSandboxPlatform = ClosedEnum; export declare const RemoteSandboxHealth: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type RemoteSandboxHealth = ClosedEnum; export type RemoteSandboxObservation = { provider: string | null; platform: RemoteSandboxPlatform | null; resourceId: string | null; location: string | null; account: string | null; observedAt: Date | null; stale: boolean; partial: boolean; health: RemoteSandboxHealth | null; lifecycle: string | null; message: string | null; }; export declare const RemoteSandboxAvailability: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type RemoteSandboxAvailability = ClosedEnum; export declare const RemoteSandboxAccessTest: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type RemoteSandboxAccessTest = ClosedEnum; export type RemoteSandboxModelCoverage = { publicModelId: string; required: boolean; availability: RemoteSandboxAvailability; blockerCodes: Array; accessTest: RemoteSandboxAccessTest; accessObservedAt: Date | null; }; export declare const RemoteSandboxProvider: { readonly Anthropic: "anthropic"; readonly Databricks: "databricks"; readonly Openai: "openai"; }; export type RemoteSandboxProvider = ClosedEnum; export declare const RemoteSandboxCredentialStatus: { readonly Pending: "pending"; readonly Valid: "valid"; readonly Invalid: "invalid"; readonly Unknown: "unknown"; }; export type RemoteSandboxCredentialStatus = ClosedEnum; export type RemoteSandboxDirectProvider = { provider: RemoteSandboxProvider; providerEndpoint: string | null; keyFingerprint: string; credentialStatus: RemoteSandboxCredentialStatus; credentialCheckedAt: Date | null; catalogObservedAt: Date | null; }; export declare const RemoteSandboxRootState: { readonly Pending: "pending"; readonly Ready: "ready"; readonly Revoked: "revoked"; }; export type RemoteSandboxRootState = ClosedEnum; export type RemoteSandboxRoot = { state: RemoteSandboxRootState; createdAt: Date | null; }; export declare const RemoteSandboxCredentialPolicy: { readonly PullOnly: "pull-only"; readonly PushAndPull: "push-and-pull"; readonly Mixed: "mixed"; readonly None: "none"; }; export type RemoteSandboxCredentialPolicy = ClosedEnum; export type RemoteSandboxRegistry = { repositories: number; credentials: number; credentialPolicy: RemoteSandboxCredentialPolicy; lastVerifiedAt: Date | null; }; export type GroupRemoteSandbox = { capability: RemoteSandboxCapability; enabled: boolean; state: RemoteSandboxState; /** * Unique identifier for the deployment. */ deploymentId: string | null; observation: RemoteSandboxObservation | null; modelCoverage?: Array | undefined; directProvider?: RemoteSandboxDirectProvider | undefined; root?: RemoteSandboxRoot | undefined; registry?: RemoteSandboxRegistry | undefined; }; export type GroupCapabilities = { models: GroupModels; keys: GroupKeys; buckets: GroupBuckets; registry: GroupRegistry; remoteSandbox: GroupRemoteSandbox; }; export type Group = { /** * Unique identifier for the deployment group. */ deploymentGroupId: string; name: string; externalId: string | null; createdAt: Date; capabilities: GroupCapabilities; }; export type ProjectCapabilityOverview = { generatedAt: Date; configurationStatus: ConfigurationStatus; summary: ProjectCapabilityOverviewSummary; groups: Array; }; /** @internal */ export declare const ConfigurationStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const SummaryModels$inboundSchema: z.ZodType; export declare function summaryModelsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SummaryKeys$inboundSchema: z.ZodType; export declare function summaryKeysFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SummaryBuckets$inboundSchema: z.ZodType; export declare function summaryBucketsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SummaryRegistry$inboundSchema: z.ZodType; export declare function summaryRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SummaryRemoteSandbox$inboundSchema: z.ZodType; export declare function summaryRemoteSandboxFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SummaryCapabilities$inboundSchema: z.ZodType; export declare function summaryCapabilitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProjectCapabilityOverviewSummary$inboundSchema: z.ZodType; export declare function projectCapabilityOverviewSummaryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ModelsCapability$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsState$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsPlatform$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsHealth$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsObservation$inboundSchema: z.ZodType; export declare function modelsObservationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ModelsAvailability$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsAccessTest$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsModelCoverage$inboundSchema: z.ZodType; export declare function modelsModelCoverageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ModelsProvider$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsCredentialStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsDirectProvider$inboundSchema: z.ZodType; export declare function modelsDirectProviderFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ModelsRootState$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsRoot$inboundSchema: z.ZodType; export declare function modelsRootFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ModelsCredentialPolicy$inboundSchema: z.ZodEnum; /** @internal */ export declare const ModelsRegistry$inboundSchema: z.ZodType; export declare function modelsRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GroupModels$inboundSchema: z.ZodType; export declare function groupModelsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const KeysCapability$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysState$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysPlatform$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysHealth$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysObservation$inboundSchema: z.ZodType; export declare function keysObservationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const KeysAvailability$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysAccessTest$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysModelCoverage$inboundSchema: z.ZodType; export declare function keysModelCoverageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const KeysProvider$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysCredentialStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysDirectProvider$inboundSchema: z.ZodType; export declare function keysDirectProviderFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const KeysRootState$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysRoot$inboundSchema: z.ZodType; export declare function keysRootFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const KeysCredentialPolicy$inboundSchema: z.ZodEnum; /** @internal */ export declare const KeysRegistry$inboundSchema: z.ZodType; export declare function keysRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GroupKeys$inboundSchema: z.ZodType; export declare function groupKeysFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BucketsCapability$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsState$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsPlatform$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsHealth$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsObservation$inboundSchema: z.ZodType; export declare function bucketsObservationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BucketsAvailability$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsAccessTest$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsModelCoverage$inboundSchema: z.ZodType; export declare function bucketsModelCoverageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BucketsProvider$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsCredentialStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsDirectProvider$inboundSchema: z.ZodType; export declare function bucketsDirectProviderFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BucketsRootState$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsRoot$inboundSchema: z.ZodType; export declare function bucketsRootFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BucketsCredentialPolicy$inboundSchema: z.ZodEnum; /** @internal */ export declare const BucketsRegistry$inboundSchema: z.ZodType; export declare function bucketsRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GroupBuckets$inboundSchema: z.ZodType; export declare function groupBucketsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RegistryCapability$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryState$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryPlatform$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryHealth$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryObservation$inboundSchema: z.ZodType; export declare function registryObservationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RegistryAvailability$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryAccessTest$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryModelCoverage$inboundSchema: z.ZodType; export declare function registryModelCoverageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RegistryProvider$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryCredentialStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryDirectProvider$inboundSchema: z.ZodType; export declare function registryDirectProviderFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RegistryRootState$inboundSchema: z.ZodEnum; /** @internal */ export declare const RegistryRoot$inboundSchema: z.ZodType; export declare function registryRootFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProjectCapabilityOverviewCredentialPolicy$inboundSchema: z.ZodEnum; /** @internal */ export declare const GroupRegistryRegistry$inboundSchema: z.ZodType; export declare function groupRegistryRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GroupRegistry$inboundSchema: z.ZodType; export declare function groupRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RemoteSandboxCapability$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxState$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxPlatform$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxHealth$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxObservation$inboundSchema: z.ZodType; export declare function remoteSandboxObservationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RemoteSandboxAvailability$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxAccessTest$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxModelCoverage$inboundSchema: z.ZodType; export declare function remoteSandboxModelCoverageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RemoteSandboxProvider$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxCredentialStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxDirectProvider$inboundSchema: z.ZodType; export declare function remoteSandboxDirectProviderFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RemoteSandboxRootState$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxRoot$inboundSchema: z.ZodType; export declare function remoteSandboxRootFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RemoteSandboxCredentialPolicy$inboundSchema: z.ZodEnum; /** @internal */ export declare const RemoteSandboxRegistry$inboundSchema: z.ZodType; export declare function remoteSandboxRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GroupRemoteSandbox$inboundSchema: z.ZodType; export declare function groupRemoteSandboxFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GroupCapabilities$inboundSchema: z.ZodType; export declare function groupCapabilitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Group$inboundSchema: z.ZodType; export declare function groupFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProjectCapabilityOverview$inboundSchema: z.ZodType; export declare function projectCapabilityOverviewFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=projectcapabilityoverview.d.ts.map