interface Thenable {
    then: Function;
    catch: Function;
}
/**
 * Verify if an object is a promise.
 * @param input The promise to verify
 */
declare function isThenable(input: unknown): input is Thenable;

export { type Thenable, isThenable };
