/**
 * Represents pagination state.
 */
declare enum PaginationState {
    /**
     * Setup in process.
     */
    NotReady = 0,
    /**
     * Sent and working.
     */
    Ready = 1,
    /**
     * Ended.
     */
    Over = 2
}
export default PaginationState;
