/** * * This function will return the first hostname found in a given list of manifests * * ```typescript * import { getIngressHost } from "@socialgouv/kosko-charts/utils" * * const host = getIngressHost(manifests); * ``` * @category utils * @return {string} */ export declare const getIngressHost: (manifests: { kind: string; }[]) => string;