import { KeyPairValue } from "./utilities"; import { Table, SearchArguments } from "./Table"; import { TableType } from "./db-discord"; export declare class LongTable extends Table { type: TableType; write(obj: T, _searchAble?: Partial | null): Promise; get(id: string): Promise; search(searchArguments: SearchArguments): Promise[]>; }