interface SQLiteAuthState { creds: any; keys: { get(type: string, ids: string[]): Promise>; set(data: Record>): Promise; }; } export declare function useSQLiteAuthState(dbPath?: string): Promise<{ state: SQLiteAuthState; saveCreds: (creds: any) => void; }>; export {}; //# sourceMappingURL=WASessionStore.d.ts.map