import { FsRemoteStorage } from "../d"; export default class TableStore { remoteStorage?: FsRemoteStorage; $router: any; tableName: string; keyType: string | boolean; id?: string; constructor(opts: { $router: any; tableName: string; keyType: string | boolean; remoteStorage: FsRemoteStorage; id?: string; }); getTableId(): string; getTable(): Promise; saveTable(table: any): Promise; clearTable(): Promise; updateTableValue(value: any, key?: string): Promise; getItemKey(): string; getTableValue(key?: string): Promise; clearTableValue(key?: string): Promise; }