import { IStoreService } from "@connext/types"; import { Sequelize } from "sequelize"; import { IAsyncStorage, StoreOptions } from "./types"; export { IBackupService, IStoreService } from "@connext/types"; export { IAsyncStorage } from "./types"; export declare const getAsyncStore: (storage: IAsyncStorage, opts?: StoreOptions) => IStoreService; export declare const getFileStore: (fileDir: string, opts?: StoreOptions) => IStoreService; export declare const getLocalStore: (opts?: StoreOptions) => IStoreService; export declare const getMemoryStore: (opts?: StoreOptions) => IStoreService; export declare const getPostgresStore: (connection: Sequelize | string, opts?: StoreOptions) => IStoreService; //# sourceMappingURL=index.d.ts.map