import type { PrivateAppIdentity, PrivatePrivyAppIdentity } from '../connect/types.js'; import type { Storage } from './types.js'; export declare const storeIdentity: (storage: Storage, identity: PrivateAppIdentity) => void; export declare const storePrivyIdentity: (storage: Storage, identity: PrivatePrivyAppIdentity) => void; export declare const loadPrivyIdentity: (storage: Storage) => PrivatePrivyAppIdentity | null; export declare const loadIdentity: (storage: Storage) => PrivateAppIdentity | null; export declare const wipeIdentity: (storage: Storage) => void; export declare const wipePrivyIdentity: (storage: Storage) => void; //# sourceMappingURL=auth-storage.d.ts.map