/** * Simple type-guard to check if a given parameter is `PromiseLike` */ export declare function isPromiseLike(candidate: any): candidate is PromiseLike;