export declare function useEncryptedStorage<T>(key: string, initialValue: T): {
    value: T;
    setValue: (newValue: T) => Promise<void>;
    remove: () => Promise<void>;
    loading: boolean;
    error: Error | null;
};
//# sourceMappingURL=useEncryptedStorage.d.ts.map