import { Fn } from"../types";
/**
* @description If the type of the value is a function, then return true, otherwise return false.
* @param {unknown} value - unknown
*/declareconstisFunction: (value: unknown) => value is Fn;
exportdefault isFunction;