export type NotPromise = T extends Promise ? never : T; /** * checks whether the value is a promise */ export declare const isNotPromise: (obj: unknown) => obj is NotPromise;