export { IdbStorage, LocalStorage, type AuthClientStorage as SignerStorage, } from "@icp-sdk/auth/client"; import type { AuthClientStorage } from "@icp-sdk/auth/client"; import { DelegationChain, ECDSAKeyIdentity, Ed25519KeyIdentity } from "@icp-sdk/core/identity"; export declare const getIdentity: (key: string, storage: AuthClientStorage) => Promise; export declare const setIdentity: (key: string, identity: Ed25519KeyIdentity | ECDSAKeyIdentity, storage: AuthClientStorage) => Promise; export declare const removeIdentity: (key: string, storage: AuthClientStorage) => Promise; export declare const getDelegationChain: (key: string, storage: AuthClientStorage) => Promise; export declare const setDelegationChain: (key: string, delegationChain: DelegationChain, storage: AuthClientStorage) => Promise; export declare const removeDelegationChain: (key: string, storage: AuthClientStorage) => Promise;