export default isFunction; /** * Returns whether or not the given parameter is a function * @param {Function | null | undefined} maybeFunction * @returns {maybeFunction is Function} */ declare function isFunction(maybeFunction: Function | null | undefined): maybeFunction is Function;