/** * A mapping for any configuration. */ export interface Configuration { } /** * Loads the configuration file at the given path. * * @param path the path of the file to load * @template T the configuration schema to load */ export declare function loadConfigurationFile(path: string): Promise;