import { SessionInterface } from '../types'; import { SessionStorage } from '../session_storage'; export interface SQLiteSessionStorageOptions { sessionTableName: string; } export declare class SQLiteSessionStorage implements SessionStorage { private filename; private options; private db; private ready; constructor(filename: string, opts?: Partial); storeSession(session: SessionInterface): Promise; loadSession(id: string): Promise; deleteSession(id: string): Promise; deleteSessions(ids: string[]): Promise; findSessionsByShop(shop: string): Promise; private hasSessionTable; private init; private query; } //# sourceMappingURL=sqlite.d.ts.map