/** * Verify if the input is a function. * @param input The function to verify */ declare function isFunction(input: unknown): input is (...args: any[]) => any; export { isFunction };