/** * Checks whether a value is a function * * @example * is.function(function() {}); // true * is.function(alert); // true * is.function('alert'); // false */ declare function isFunction(value: any): value is Function; export default isFunction;