import { AxioDBCloud } from './AxioDBCloud.client'; import CollectionProxy from './CollectionProxy'; /** Mirrors the Database class API. */ export default class DatabaseProxy { private client; private dbName; constructor(client: AxioDBCloud, dbName: string); createCollection(name: string): Promise; deleteCollection(name: string): Promise; isCollectionExists(name: string): Promise; getCollectionInfo(): Promise; get name(): string; }