import { Table, SearchArguments } from "./Table"; import { TableType } from "./db-discord"; import { KeyPairValue } from "./utilities"; export declare class ShortTable extends Table { type: TableType; write(obj: T): Promise; writeExpectSearch(obj: T): Promise; get(id: string): Promise; search(searchArguments: SearchArguments): Promise[]>; update(id: string, _obj: ((o: T) => T) | T): Promise<{}>; }