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