import { Settings } from './settings.js';
import { ReporterInterface } from "./types.js";
export default function newReporter(labeled: {
    sourcePath: string;
}, settings: Settings): ReporterInterface;
