diff --git a/docs/generated/changelog.html b/docs/generated/changelog.html
index 506b6cc4..c309863e 100644
--- a/docs/generated/changelog.html
+++ b/docs/generated/changelog.html
@@ -11,7 +11,9 @@
Agent-JS Changelog
Version x.x.x
-
+
+ - chore: export `AuthClientStorage` to aid with custom implementations
+
Version 1.0.0
- chore: npm audit fix
diff --git a/packages/auth-client/src/index.ts b/packages/auth-client/src/index.ts
index c285e401..72e1d541 100644
--- a/packages/auth-client/src/index.ts
+++ b/packages/auth-client/src/index.ts
@@ -28,7 +28,7 @@ import {
} from './storage';
import { PartialIdentity } from '@dfinity/identity/lib/cjs/identity/partial';
-export { IdbStorage, LocalStorage, KEY_STORAGE_DELEGATION, KEY_STORAGE_KEY } from './storage';
+export { AuthClientStorage, IdbStorage, LocalStorage, KEY_STORAGE_DELEGATION, KEY_STORAGE_KEY } from './storage';
export { IdbKeyVal, DBCreateOptions } from './db';
const IDENTITY_PROVIDER_DEFAULT = 'https://identity.ic0.app';