import type { ComponentContext } from "../../../types";
import type { VariableValue } from "../../../variables/VariableValue";
export declare const hasKubernetesCloudSQL: (context: ComponentContext) => boolean;
type CloudSqlValues = {
  enabled: boolean;
  proxyCredentials: string;
  instanceConnectionName: string;
  fullDbName: VariableValue;
  dbUser: string;
};
export declare const createKubernetesCloudsqlBaseValues: (context: ComponentContext) => {
  cloudsql: CloudSqlValues;
};
export {};