import { OnInit } from '@angular/core'; import { TranslateService } from '@ngx-translate/core'; import { BaseEntityListComponent, ContentType, ErrorsExtractor, IBaseEntityModalOptions, ModalsService } from '@rucken/core'; import { DynamicRepository, IRestProviderOptions } from 'ngx-repository'; export declare class ContentTypesGridComponent extends BaseEntityListComponent implements OnInit { protected errorsExtractor: ErrorsExtractor; protected translateService: TranslateService; protected dynamicRepository: DynamicRepository; protected contentTypesConfig: IRestProviderOptions; modalItem: IBaseEntityModalOptions; title: string; constructor(modalsService: ModalsService, errorsExtractor: ErrorsExtractor, translateService: TranslateService, dynamicRepository: DynamicRepository, contentTypesConfig: IRestProviderOptions); ngOnInit(): void; }