#!/usr/bin/env node import { DotenvConfig } from "./index"; /** * Generic object. */ type GenericObject = { [key: string]: T; }; /** * Configuration option types. */ export declare enum OptionType { boolean = 0, number = 1, string = 2, array = 3, object = 4, mapOfNumbers = 5 } /** * List of all Dotenv configuration options type. */ export declare const DotenvOptionsType: GenericObject; /** * Parse CLI parameter type. * @param option - value to parse * @param type - value type * @returns parsed option */ export declare function parseOption(option: string | undefined, type: OptionType): unknown; /** * Run CLI Dotenv runners. * @param runner */ export declare function runCli(runner: (config: DotenvConfig) => unknown): unknown; export {}; //# sourceMappingURL=config.d.ts.map