/**
 * checks whether the value is a promise
 */
export declare const isAPromise: <T = any>(obj: any) => obj is Promise<T>;
