import type { Maybe } from "../Maybe";
import type { Dict } from "../Types";
import type { IParameterStoreLayer } from "./ParametersManager";
export declare class EnvironmentParameters implements IParameterStoreLayer {
    get(param: string): Promise<Maybe<string>>;
    getParameters(params: string[]): Promise<Record<string, string>>;
    getParametersByPath(path: string): Promise<Dict<string>>;
}
