import Dexie from 'dexie'; import { CryptoSettings, EncryptionMethod, DecryptionMethod } from './types'; export declare function upgradeTables(db: T, tableSettings: CryptoSettings, encryptionKey: Uint8Array, oldSettings: CryptoSettings | undefined, encrypt: EncryptionMethod, decrypt: DecryptionMethod, nonceOverride: Uint8Array | undefined): Promise;