import { TessraCollection } from "./collection"; /** * Main class of TessraDB */ export declare class TessraDB { #private; name: string; colNames: Array; constructor(name: string); /** * Function to get collection by name * @param name name of the collection * @returns full collection */ getCollection(name: string): Promise; /** * Creates collection * @param name name of the collection */ createCollection(name: string): Promise; }