export declare const deploymentStatus: readonly ["ready", "not_ready", "disabled"], isDeploymentStatus: (value: unknown) => value is "ready" | "not_ready" | "disabled";
export type DeploymentStatus = typeof deploymentStatus[number];
export type ServerDeploymentStatus = Uppercase<typeof deploymentStatus[number]>;
export declare function getDeploymentStatusLabel(status: DeploymentStatus): string;
