export type SafeExecuteResult = [Error | unknown | null, T | null]; export declare function safeExecute(fn: () => T): Promise>;