export declare const HELP_TEXT = "node-settings \u2014 schema-first settings for Node apps\n\nUSAGE\n node-settings [options]\n\nCOMMANDS\n validate [env-file] Validate the env (or a .env file) against the schema.\n check Scan every per-env branch for placeholders and\n missing required envs. Exits non-zero on errors.\n inspect [--env ] Show the env schema + layered config for each\n perEnv branch (dry-run, no secrets required).\n preflight [env-file] One-shot CI gate: validate + check + inspect.\n diff [file|-] Compare a live K8s ConfigMap/Secret YAML\n against the schema; flag drift + leaked secrets.\n generate Generate artifacts from the schema.\n Targets: env-example | envs | docs | k8s |\n json-schema | tfvars | compose\n\nGLOBAL OPTIONS\n --config Path to the settings config file.\n Default: auto-discover node-settings.config.{ts,js,...}\n --format Output format for validate / check / inspect / preflight.\n Default: text. json emits a single document on stdout.\n --workspace For check / inspect / preflight: iterate every\n package under packages/, apps/, services/, libs/.\n\nvalidate\n node-settings validate [env-file] [--config ] [--format ]\n Loads the env file (or process.env) and runs the schema.\n\ncheck\n node-settings check [--env ] [--env-file name=path,name=path]\n [--allow-warnings | --no-allow-warnings]\n [--workspace] [--format ]\n Reports placeholder values, empty required strings, missing\n required env vars, unfilled todo() sentinels, and secret-looking\n keys placed in perEnv (where operator env vars cannot reach them).\n\ninspect\n node-settings inspect [--env ] [--config ]\n [--workspace] [--format ]\n Prints the env schema and the layered config (defaults + perEnv[mode])\n for each branch. Does not call the loader \u2014 no env values required.\n\npreflight\n node-settings preflight [env-file] [--env ]\n [--env-file name=path,name=path]\n [--workspace] [--format ]\n Composite CI gate. Runs validate against the live env (or supplied\n file), then check, then inspect. Exits non-zero if any stage fails.\n\ndiff\n node-settings diff [file|-] [--config ] [--strict]\n [--format ]\n Compare a live K8s manifest (ConfigMap + Secret YAML) against\n the schema. Reports missing required keys, secrets accidentally\n placed in a ConfigMap, non-secrets in a Secret, and extra\n undeclared keys. Pipe input via \"kubectl get cm,secret -o yaml\".\n --strict treats warnings (extra-key, public-in-secret) as errors.\n\ngenerate env-example [--out ]\ngenerate envs --out-dir \n Writes one .env..example per perEnv branch\n (e.g. .env.local.example, .env.dev.example, .env.prod.example).\ngenerate docs [--out ] [--title ] [--intro ]\ngenerate k8s --name [--namespace ] [--inline-secrets] [--out ]\ngenerate json-schema [--out ] [--title ] [--id ] [--description ]\ngenerate tfvars [--out ]\n Writes a Terraform .tfvars file. Required values use\n REPLACE_ME placeholders; pass via TF_VAR_* env vars.\ngenerate compose [--name ] [--style service|env-file] [--out ]\n Writes a Docker Compose snippet. Default 'service'\n style yields a complete services: block; 'env-file'\n yields a .env-style file for env_file: references.\n\nEXAMPLES\n node-settings validate .env.production\n node-settings check --env prod,stage --env-file prod=.env.prod\n node-settings preflight .env.production --format json\n kubectl get cm,secret -n prod -o yaml | node-settings diff -\n node-settings generate env-example --out .env.example\n node-settings generate envs --out-dir env-samples/\n node-settings generate docs --out ENV.md\n node-settings generate k8s --name my-app --namespace prod --out k8s.yaml\n node-settings generate tfvars --out terraform.tfvars\n node-settings generate compose --name web --out docker-compose.snippet.yml\n"; //# sourceMappingURL=help.d.ts.map