import { AnyFunction } from "@stryke/types/base"; //#region src/is-function.d.ts declare function isSyncFunction(value?: any): value is AnyFunction; declare function isAsyncFunction(value?: any): value is AnyFunction; /** * Check if the provided value's type is `Function` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `Function` */ declare const isFunction: (value: unknown) => value is AnyFunction; //#endregion export { isAsyncFunction, isFunction, isSyncFunction }; //# sourceMappingURL=is-function.d.cts.map