export declare function isAsyncLike(obj: any): obj is Promise; export declare function isAsync(obj: any): obj is Promise; export type AsyncBoolean = boolean | Promise; export declare function toAsyncBoolean(...inputs: (any | any[])[]): AsyncBoolean; export declare function toDeferredBoolean(...inputs: (any | any[])[]): Promise;