/** * @file Config - loadBuildConfig * @module mkbuild/config/loadBuildConfig */ import type { Config } from '../interfaces/index.mjs'; /** * Searches for a build configuration file. * * If found, a config object will be returned. The object will contain options * from the config file. If not found, an empty object will be returned. * * @see https://github.com/davidtheclark/cosmiconfig#explorersearch * * @async * * @param {string} [location=DOT] - Directory to search * @return {Config} Build configuration options */ declare const loadBuildConfig: (location?: string) => Promise; export default loadBuildConfig;