import { Router, ActivatedRoute } from '@angular/router';
import { OnInit, OnDestroy } from '@angular/core';
import { Subscription } from 'rxjs';
export declare class PerPageComponent implements OnInit, OnDestroy {
    private route;
    private activatedRoute;
    navigationSubscription: Subscription;
    limits: Number[];
    perPage?: Number;
    name?: any;
    page?: any;
    constructor(route: Router, activatedRoute: ActivatedRoute);
    ngOnInit(): void;
    ngOnDestroy(): void;
    updateLimit(): void;
}
