import { Collection as BaseCollection } from 'collect.js'; export default class Collection extends BaseCollection { /** * The get method returns the item at a given key. If the key does not exist, null is returned. */ get(path: keyof TItem | K, defaultValue?: ((...any: any[]) => V | TItem) | V | TItem): TItem | null; /** * The has method determines if one or more keys exists in the collection. */ has(path: keyof TItem | K | Array): boolean; } //# sourceMappingURL=Collection.d.ts.map