export default function isPromise<PromiseResult>(input: Promise<PromiseResult> | unknown): input is Promise<PromiseResult>;
