//#region src/helpers/env.d.ts

/**
 * @public
 */
type Env = Record<string, EnvValue>;
/**
 * @public
 */
type EnvValue = string | undefined;
type Mode = "cloud" | "dev";
//#endregion
export { Env, Mode };
//# sourceMappingURL=env.d.cts.map