import { OnInit, EventEmitter } from '@angular/core';
import { IRecordViewProcess } from '../model/model';
import { ServiceService } from '../service/service.service';
import { ElementsService } from 'dbweb-core';
export declare class FooterToolbarComponent implements OnInit {
    svr: ServiceService;
    private eles;
    class: string;
    process: IRecordViewProcess[];
    pageSize: number;
    startRowNo: number;
    rowCount: number;
    responseTime: number;
    refreshDisable: boolean;
    nextPageDisable: boolean;
    PrevPageDisable: boolean;
    processClick: EventEmitter<IRecordViewProcess>;
    rowCountClick: EventEmitter<MouseEvent>;
    prevPageClick: EventEmitter<MouseEvent>;
    nextPageClick: EventEmitter<MouseEvent>;
    Math: Math;
    wingAnimation: boolean;
    constructor(svr: ServiceService, eles: ElementsService);
    ngOnInit(): void;
    pageText(): string;
    rowCountText(): string;
    responseTimeText(): string;
}
