import { IModel } from './types'; export declare function getPouchDBWithPlugins(): PouchDB.Static; export declare function UpsertHelper(item: T): { merge: (existing: T) => T & { _rev: string; }; replace: (existing: T) => T & { _rev: string; }; };