/// import { EventEmitter } from "events"; import { Parent } from "./pipes"; import { Service } from "./service"; export declare class Booter extends EventEmitter { protected entryfile: string; protected parent: Parent; protected service: Service; constructor(entryfile: string); init(): void; boot(): void; destroy(): void; }