export declare class PagingParameters { static readonly DEFAULT_UPPER_BOUND: number; static readonly DEFAULTS: PagingParameters; static readonly HUNDRED_RESULTS: PagingParameters; static readonly FIFTY_RESULTS: PagingParameters; static readonly TWENTY_RESULTS: PagingParameters; static readonly TEN_RESULTS: PagingParameters; static readonly ONE_RESULT: PagingParameters; pageLowerBound: number; pageUpperBound: number; maximumRows: number; isLastPage: boolean; constructor(pageLowerBound?: number, pageUpperBound?: number, maximumRows?: number, isLastPage?: boolean); setData(rawData: any): void; }