import { ModuleConfig } from "../data/ModuleConfig"; /** * Mark some class as system module by defining a module descriptor. * This metadataInternal tag will invoke Injectable so any module will be Injectable and there is no need to redefine it as * such. Actually that will lead to error, if @Module and @Injectable will be both set. * @param descriptor Module descriptor */ export declare function Module(descriptor: ModuleConfig): Function;