/** * Checks if a value is a native function. * * @since 1.0.0 * * @param {*} value - The value to check. * @returns {boolean} - Returns `true` if `value` is a native function, else `false`. * * @example * * isNative(alert); * // => true * * isNative(Math.max); * // => true * * isNative(debounce); * // => false */ declare const isNative: (value: any) => boolean; export default isNative;