import { SessionInterface } from '../types'; import { SessionStorage } from '../session_storage'; export declare class CustomSessionStorage implements SessionStorage { readonly storeCallback: (session: SessionInterface) => Promise; readonly loadCallback: (id: string) => Promise; readonly deleteCallback: (id: string) => Promise; constructor(storeCallback: (session: SessionInterface) => Promise, loadCallback: (id: string) => Promise, deleteCallback: (id: string) => Promise); storeSession(session: SessionInterface): Promise; loadSession(id: string): Promise; deleteSession(id: string): Promise; } //# sourceMappingURL=custom.d.ts.map