export declare function isPromise<T = any>(val: any): val is Promise<T>;
export declare function fulfillPromise(promise: PromiseLike<any>): void;
