import type { ComponentContext } from "../../types";
import type { VariableValue } from "../../variables/VariableValue";
/**
 * separate by secrets and public.
 * we evalulate the actual values later, but want to store the secrets in kubernetes secrets
 */
export declare const createKubeEnv: (context: ComponentContext) => {
    secret: Record<string, VariableValue>;
    public: Record<string, VariableValue>;
};
