/** * Environment Command - drift env * * Show environment variable access patterns across the codebase. * Tracks which code accesses which environment variables/config. * * @requirements Environment Variable Detection Feature */ import { Command } from 'commander'; import { type EnvSensitivity } from 'driftdetect-core'; export interface EnvOptions { /** Output format */ format?: 'text' | 'json'; /** Enable verbose output */ verbose?: boolean; /** Filter by sensitivity */ sensitivity?: EnvSensitivity; } /** * Create the env command with subcommands */ export declare const envCommand: Command; //# sourceMappingURL=env.d.ts.map