import { Database } from "./Database"; import { Collection } from "./Collection"; export declare class Table extends Database { private database; ID: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object"; private typeof; constructor(key: any, database: Database); /** * @description to get the value of the element */ get cache(): Collection; /** * @description Write the data in the file * @example .writeFileSync() * @param {*} data * @returns {Promise} */ writeFileSync(collection: Collection): Promise; }