import { Logger } from '../../logger'; import { IDatabase, IDatabaseTransaction } from '../../storage'; import { Database, Migration, MigrationContext } from '../migration'; import { DecryptedAccountValue as NewDecryptedAccountValue } from './033-multisig-keys-identity/new/accountValue'; import { DecryptedAccountValue as OldDecryptedAccountValue } from './033-multisig-keys-identity/old/accountValue'; export declare class Migration033 extends Migration { path: string; database: Database; prepare(context: MigrationContext): IDatabase; forward(context: MigrationContext, db: IDatabase, tx: IDatabaseTransaction | undefined, logger: Logger, dryRun: boolean, walletPassphrase: string | undefined): Promise; accountForward(oldValue: OldDecryptedAccountValue): NewDecryptedAccountValue; backward(context: MigrationContext, db: IDatabase, tx: IDatabaseTransaction | undefined, logger: Logger, dryRun: boolean, walletPassphrase: string | undefined): Promise; accountBackward(newValue: NewDecryptedAccountValue): OldDecryptedAccountValue; } //# sourceMappingURL=033-multisig-keys-identity.d.ts.map