import { Dictionary } from 'ts-essentials'; import { SpockConfig, UserProvidedSpockConfig } from '../config'; export declare function loadConfig(): SpockConfig; export declare function loadExternalConfig(path: string): any; export declare function mergeConfig(externalCfg: UserProvidedSpockConfig): SpockConfig; export declare function parseConfigPath(rawPath: string): string; export declare function getRequiredString(env: Env, name: string): string; export declare function getRequiredNumber(env: Env, name: string): number; export declare type Env = Dictionary;