import { Pager } from '../../core/pager';
import { ListResponse } from '../../core/list-response';
/**
 * Implements {@link Pager} contract and represents list without any paging mechanics.
 * @note This type is configured to use with {@link FiltersService}.
 */
export declare class NullObjectPager implements Pager {
    /**
     * @inheritdoc
     */
    appendedOnLoad: boolean;
    /**
     * @inheritdoc
     */
    totalCount: number;
    /**
     * @inheritdoc
     */
    loadedCount: number;
    /**
     * @inheritdoc
     */
    processResponse(response: ListResponse<any> | any[]): void;
    /**
     * @inheritdoc
     */
    reset(): void;
}
//# sourceMappingURL=null-object-pager.d.ts.map