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