import { Sequelize } from "sequelize"; import { KeyValueStorage } from "../types"; export declare class WrappedSequelizeStorage implements KeyValueStorage { private readonly prefix; private readonly separator; private readonly tableName; sequelize: Sequelize; private ConnextClientData; private shouldUseTransaction; constructor(_sequelize: string | Sequelize, prefix?: string, separator?: string, tableName?: string); init(): Promise; close(): Promise; getKey(...args: string[]): string; getKeys(): Promise; getEntries(): Promise<[string, any][]>; getItem(key: string): Promise; setItem(key: string, value: any): Promise; removeItem(key: string): Promise; private getRelevantItems; } //# sourceMappingURL=sequelizeStorage.d.ts.map