/** * Checks whether all deployments in the specified Kubernetes namespace are fully rolled out. * * A deployment is considered ready when the number of `readyReplicas` equals the desired `replicas`. * Logs the rollout status of each deployment. * * @param {string} namespace - The Kubernetes namespace to check. * @returns {Promise} - `true` if all deployments are ready, otherwise `false`. */ export declare function checkDeploymentStatus(namespace: string): Promise; export declare function namespaceDeploymentsReady(namespace?: string): Promise; //# sourceMappingURL=deploymentChecks.d.ts.map