/**
 * Asynchronously build and create bundled files using webpack, babel and esbuild.
 * @param {Problems} problems
 * @param {ConfigObject} [configObject = dco]
 * @async
 */
export default function build(problems: Problems, configObject?: ConfigObject): Promise<void>;
export type WebpackConfig = import("webpack").Configuration;
export type BabelPluginItem = import("@babel/core").PluginItem;
export type Problems = import("../../core/types.js").Problems;
export type ConfigObject = import("../../core/types.js").ConfigObject;
