/** * @class CollectionResponse - A generic object for responses that contain collections of objects. */ export declare class CollectionResponse { /** * @property {number} count - The total count of items in the collection. */ count: number; /** * @property {T} items - The items in the collection. */ items: T[]; /** * @constructor - Creates a new instance of the CollectionResponse class. * @param {number} count - The total count of items in the collection. * @param {T} items - The items in the collection. * @returns {CollectionResponse} - A new instance of the CollectionResponse. */ constructor(count: number, items: T[]); }