import Collection from '../helpers/Collection'; import Service from '../Service'; declare class Database extends Service { collection: (name: string) => Collection; } export = Database;