import { SortingInstruction } from './sorting-instruction';
export declare class PagingInstruction {
    pageIndex: number;
    pageSize: number;
    totalRowCount: number;
    sortOptions: SortingInstruction[];
    constructor(pageIndex: number, pageSize: number, totalRowCount: number, sortOptions: SortingInstruction[]);
}
