export type UnPromisify = T extends Promise ? U : T; export type WithoutPromise = UnPromisify; export type IsNotPromise = T extends Promise ? never : T; export type Promisable = T | Promise; export type NonPromise = T extends Promise ? never : T; export declare function isPromise, T>(a: unknown): a is R; export declare function isNotPromise(a: T): T; //# sourceMappingURL=is-promise.d.ts.map