import { IConfigDexie } from '../reduxs'; export declare const CONFIG_VERSION: number; export declare function findAll(): Promise; export declare function findAllOfCurrentVersion(): Promise; export declare function findOneField(tabName: string, fieldName: string): Promise; export declare function findOneFieldVal(tabName: string, fieldName: string): Promise; export declare function saveOrUpdateOneByTabNameFieldName(tabName: string, fieldName: string, value: any): Promise; export declare function removeOneByTabNameAndFieldName(tabName: string, fieldName: string): Promise;