/** * @license MIT * @module @whoj/utils-vue@2.4.0 * @copyright (c) 2026 Jonson B. */ import { Func } from '@whoj/utils-types'; /** * Call onUnmounted() if it's inside a component lifecycle, if not, do nothing * * @param func * * @__NO_SIDE_EFFECTS__ */ declare function tryOnUnmounted(func: Func): void; export { tryOnUnmounted };