import { OnApplicationBootstrap } from '@nestjs/common'; import { SystemProvider } from '@relate/common'; import InitCommand from '../../commands/project/init'; export declare class InitModule implements OnApplicationBootstrap { protected readonly parsed: ParsedInput; protected readonly utils: CommandUtils; protected readonly systemProvider: SystemProvider; constructor(parsed: ParsedInput, utils: CommandUtils, systemProvider: SystemProvider); onApplicationBootstrap(): Promise; }