import type { ScanOptions } from '../config/types.js'; /** * Options forwarded from the CLI for the --explain command. */ export interface ExplainOptions extends ScanOptions { key: string; } /** * Implements `dotenv-diff --explain `. * * Reports where the key is defined in env files, where it is used in the * codebase, and its overall status (defined / used / duplicated / ignored). * @param opts Explain options from CLI * @returns void */ export declare function explainKey(opts: ExplainOptions): Promise; //# sourceMappingURL=explain.d.ts.map