import { Type } from "igniteui-react-core";
/**
 * Enumeration representing different paging modes for the grid.
 * - Local: The grid will use local data to extract pages during paging.
 * - Remote: The grid will expect pages to be delivered from a remote location and will only raise events during paging interactions.
 */
export declare enum GridPagingMode {
    Local = 0,
    Remote = 1
}
/**
 * @hidden
 */
export declare let GridPagingMode_$type: Type;
