import { JsonMap } from '../../private/common/json.js'; export type Environments = Record; interface LoadEnvironmentOptions { from?: string; silent?: boolean; } /** * Loads environments from a file. * @param dir - The file path to load environments from. * @returns The loaded environments. */ export declare function loadEnvironment(environmentName: string, fileName: string, options?: LoadEnvironmentOptions): Promise; export declare function environmentFilePath(fileName: string, options?: LoadEnvironmentOptions): Promise; export {};