import type { InputOptions } from "../../interfaces";
type DotenvUtilsOptions = {
    /**
     * Location to write down the dotenv file
     * @default process.cwd()
     */
    targetDir?: string;
};
export declare const checkGitignoreContainsDotenvFiles: (options?: DotenvUtilsOptions) => Promise<{
    isContainAll: boolean;
    results: any;
}>;
export declare const execDotenvCommand: (options?: InputOptions) => Promise<void>;
export {};
//# sourceMappingURL=dotenv-exec.d.ts.map