/**
 * @import { ConfigObject, Problems, Testcases, Solution } from '../../core/types/index.js';
 */
/**
 * Asynchronously run generated testcases and compare them with the expected outputs.
 * @param {Problems} problems
 * @param {ConfigObject} [configObject = dco]
 * @async
 */
export default function run(problems: Problems, configObject?: ConfigObject): Promise<void>;
import type { Problems } from '../../core/types/index.js';
import type { ConfigObject } from '../../core/types/index.js';
