/** * Deployment Type Parsing * * Shared utility for validating and parsing deployment type values. * Used by both the server and CLI telemetry initialization. */ import { DeploymentTypeEnum } from "@superblocksteam/shared"; /** * Parse and validate a deployment type string. * * Returns CLOUD if not specified. Throws if an invalid value is provided. * * @param value - Raw deployment type string (typically from env var) * @returns Valid DeploymentTypeEnum value * @throws Error if value is not a valid DeploymentTypeEnum */ export declare function parseDeploymentType(value: string | undefined): DeploymentTypeEnum; //# sourceMappingURL=deployment-type.d.ts.map