import type { DotenvConfigOptions } from "dotenv";
import { Dict } from "./build";
export interface DotenvRunOptions {
    cwd?: string;
    dotenv?: DotenvConfigOptions;
    environment?: string;
    files?: string[];
    prefix?: string | RegExp;
    unsecure?: boolean;
    root?: string;
    nodeEnv?: boolean;
    verbose?: boolean;
    builtIn?: Dict;
    runtime?: boolean;
    define?: string;
    global?: string;
}
//# sourceMappingURL=options.d.ts.map