export declare class Collection { private collection; all(): Record; entries(): Array<[string, T]>; keys(): string[]; values(): T[]; pull(key: string): T | undefined; get(key: string): T | undefined; set(key: string, value: T): void; forget(key: string): void; flush(): void; has(key: string): boolean; missing(key: string): boolean; count(): number; isEmpty(): boolean; isNotEmpty(): boolean; random(): T; toJson(): string | undefined; }