/**
 * @typedef {import("./EntryPoint.js").EntryPoint} EntryPoint
 */
/**
 * @implements {EntryPoint}
 */
export class TestingEntryPoint extends GenericEntryPoint implements EntryPoint {
    /**
     * @param {ModuleCollection} modules
     */
    constructor(modules: ModuleCollection);
}
export type EntryPoint = import("./EntryPoint.js").EntryPoint;
import { GenericEntryPoint } from "./GenericEntryPoint.js";
import { ModuleCollection } from "./ModuleCollection.js";
//# sourceMappingURL=TestingEntryPoint.d.ts.map