/** * Validate if given input is a callable function */ declare const isFunction: (fn: any) => boolean; export default isFunction;