import { ParentCache } from "./ParentCache.js"; import { UnassignedState } from "./useUpdatableDisposableState.js"; import { ItemCleanupPair } from "@isograph/disposable-types"; //#region src/useDisposableState.d.ts type UseUpdatableDisposableStateReturnValue = { state: T; setState: (pair: ItemCleanupPair>) => void; }; declare function useDisposableState(parentCache: ParentCache): UseUpdatableDisposableStateReturnValue; //#endregion export { useDisposableState }; //# sourceMappingURL=useDisposableState.d.ts.map