import { ModuleWithProviders } from '@angular/core'; import { ThemeConfig } from './ugla.service'; /** * Imports: Common and Router * Declararions and Exports: all Ugla's components * Provider: Ugla Lib Service */ export declare class UglaModule { /** * Constructor UglaModule * * @param parentModule: UglaModule */ constructor(parentModule: UglaModule); /** * Initialize Ugla with theme configurations. * @param config typeof ThemeConfig * @returns typeof ModuleWithProviders */ static forRoot(config: ThemeConfig): ModuleWithProviders; /** * Use when import on Lazy Loading module */ static forChild(): ModuleWithProviders; }