/** * @license MIT * @module @whoj/utils-vue@2.4.0 * @copyright (c) 2026 Jonson B. */ /** * Call onMounted() if it's inside a component lifecycle, if not, just call the function * * @param func * @param sync if set to false, it will run in the nextTick() of Vue * * @__NO_SIDE_EFFECTS__ */ declare function tryOnMounted(func: T, sync?: boolean): void; export { tryOnMounted };