import { IPaging } from './paging';
export interface IPagination<T = unknown> {
    paging: IPaging;
    items: T[];
}
