import type * as Dotenv from 'dotenv';
/**
 * 获取 dotenv 库
 * dotenv 是一个用于加载环境变量的第三方库
 * @returns dotenv 库
 * @example
 * ```ts
 * const dotenv = getDotenv();
 * dotenv.config({ path: '.env.local' });
 * ```
 */
export declare function getDotenv(): typeof Dotenv;
