import { Columns, GenericObject, TableContents, ReadEvents } from "../interfaces/Interfaces"; export declare const table: { list: (data: { database: string; }) => Promise; all: (data: { database: string; }) => Promise; system: (data: { database: string; }) => Promise; schema: (data: { database: string; table: string; }) => Promise; read: (data: { database: string; table: string; }) => Promise; select: (data: { database: string; table: string; columns?: string[]; where?: string; }) => Promise; count: (data: { database: string; table: string; }) => Promise; listToFile: (data: { database: string; file: string; }) => Promise; exportToFileJSON: (data: { database: string; table: string; file: string; }) => Promise; exportToFileCSV: (data: { database: string; table: string; file: string; }) => Promise; readAllTables: (data: { database: string; events?: ReadEvents; }) => Promise; exportAllTablesToFileJSON: (data: { database: string; folder: string; events?: ReadEvents; }) => Promise; exportAllTablesToFileCSV: (data: { database: string; folder: string; events?: ReadEvents; }) => Promise; };