import type { Config, ComponentContext } from "../types";
import type { DeployConfigKubernetesCluster } from "./types";
export declare const getFullKubernetesClusterName: (cluster: DeployConfigKubernetesCluster) => string;
export declare const getKubernetesNamespace: (config: Pick<Config, "customerName" | "appName">, env: string) => string;
export declare const contextIsStoppable: (context: ComponentContext) => boolean;
