import { Database } from './database'; export interface CollectionJSONObject { collection: string; } export declare class Collection { protected name: string; protected database: Database; constructor(name: string); setDatabase(database: Database): void; inspect(): CollectionJSONObject; }