import { MatPaginatorIntl } from '@angular/material/paginator'; import { LanguageService } from '@ts-core/frontend/language'; import { Subscription } from 'rxjs'; import { OnDestroy } from '@angular/core'; export declare class LanguageMatPaginatorIntl extends MatPaginatorIntl implements OnDestroy { protected language: LanguageService; lastPageLabel: string; nextPageLabel: string; firstPageLabel: string; previousPageLabel: string; itemsPerPageLabel: string; protected subscription: Subscription; constructor(language: LanguageService); protected commitLanguageProperties(): void; protected languageRangeLabel: (page: number, pageSize: number, length: number) => string; ngOnDestroy(): void; }