import { Fn } from '../utils/types.js'; import 'solid-js'; import 'solid-js/types/reactive/signal'; /** * Call OnCleanup() if it's inside a component lifecycle, if not, do nothing * * @see https://solidjs-use.github.io/solidjs-use/shared/tryOnCleanup */ declare function tryOnCleanup(fn: Fn): boolean; export { tryOnCleanup };