import type { Deployment } from "kubernetes-models/apps/v1/Deployment"; /** * * This function will add a [[waitForService | wait-for-service]] initContainer to the first container of a given [[Deployment]] * * * ```typescript * import { addWaitForService } from "@socialgouv/kosko-charts/utils" * * addWaitForService(deployment, "hasura"); * ``` * @category utils * @return {Deployment} */ export declare const addWaitForService: (deployment: Deployment, name: string) => Deployment;