import { ModuleWithProviders } from '@angular/core';
/**
 * Provides dependencies & components for SEO by locales.
 */
export declare class LocaleSeoModule {
    /**
     * Use in AppModule: new instance of SearchService.
     */
    static forRoot(): ModuleWithProviders<LocaleSeoModule>;
    /**
     * Use in feature modules with lazy loading: new instance of SearchService.
     */
    static forChild(): ModuleWithProviders<LocaleSeoModule>;
}
