import { IPagingEvent } from '../interfaces/ipaging-event';
import { ApiCallInfo } from './api-call-info';
export declare class PagingEvent implements IPagingEvent {
    previousIndex: number;
    currentIndex: number;
    startIndex: number;
    total: number;
    backUrl: string;
    hash: string | null;
    targetUrl: string;
    detailsUrl: string;
    currentId: string;
    itemsOnPage: number;
    apiCall: ApiCallInfo;
    eventSource: string;
    constructor(hash: string);
}
