import { nullish } from '../types/global.types';
export interface PaginationOf<T> {
    first: T | nullish;
    last: T | nullish;
    prev: T | nullish;
    next: T | nullish;
}
//# sourceMappingURL=paginator.interface.d.ts.map