import { Collection } from './collection'; declare class Database { private static _RESERVED; name: string; private _collections; private _options; constructor(name: string, options?: object); collection(name: string, schema?: object): Collection; exportJSON(): string; get(name: string): Collection; importJSON(json: string, overwrite?: boolean): void; list(): string[]; } declare function createDatabaseProxy(name: string, options?: object): Database; export { Database, createDatabaseProxy };