import { AlunaError } from '../lib/core/AlunaError'; export interface IExecuteAndCatchReturns { error?: AlunaError; result?: T; } export declare const executeAndCatch: (lambda: () => any) => Promise>;