import type { ReactotronCore } from "reactotron-core-client"; export interface AsyncStorageOptions { ignore?: string[]; } declare const asyncStorage: (options?: AsyncStorageOptions) => (reactotron: ReactotronCore) => { features: { trackAsyncStorage: () => void; untrackAsyncStorage: () => void; }; }; export default asyncStorage;