import type { Any, TryCatchResult } from './types'; /** * Simple linear try catch utility to avoid repetitive try catch blocks */ declare function tryCatch Any>(callback: T): TryCatchResult; export default tryCatch;