export declare type Env = "dev-local" | "prod" | "dev" | "stage" | "review"; export declare type KubernetesSecretName = string; export interface ISecrets { [key: string]: KubernetesSecretName; } export interface IValueFile { env?: { public?: { [key: string]: string; }; secret?: ISecrets; }; cloudsql?: { enabled: boolean; instanceId?: string; region?: string; projectId?: string; }; }