/**
 * @description - execute observable and extract the first
 * @author - huang.jian <hjj491229492@hotmail.com>
 */
import { Observable } from 'rxjs';
export declare function promisify<T>(source$: Observable<T>): Promise<T>;
