import { Result } from "./types.js";
export declare function tryCatch<T, E = Error>(callback: (...args: any[]) => T): Result<T, E>;
