import { SecretResolver } from "@graphorin/core/contracts"; //#region src/secrets/resolvers/env.d.ts /** * Resolver for the `env:` scheme. Reads `process.env[NAME]` and wraps * the result in a `SecretValue`. Honours an optional `?default=...` * fallback. Throws `SecretResolutionError` when the variable is not * set and no fallback is configured. * * @stable */ declare const envResolver: SecretResolver; //#endregion export { envResolver }; //# sourceMappingURL=env.d.ts.map