import { IDataStructure } from './../interfaces/index'; /** * List of Entity with a total count number */ export declare class EntityWithTotalCount { records: IDataStructure[]; totalCount: number; }