import { DynamicModule, OnModuleInit } from '@nestjs/common'; import { ThemeEngineModuleOptions } from './options.interface'; import { ThemeService } from './theme.service'; export declare class ThemeEngineModule implements OnModuleInit { private theme; constructor(theme: ThemeService); static forRoot(options?: ThemeEngineModuleOptions): DynamicModule; onModuleInit(): void; }