export declare function safeAwait<T>(promise: Promise<T>, finallyFn?: () => void): Promise<readonly [Error] | readonly [undefined, T]>;
