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