import { Predicate } from './Predicate.js'; /** * @desc Ensures that the `value` is a {@link Function}. * * @example * import { ensure, isFunction, TinyType } from 'tiny-types'; * * function myFunction(callback: (error?: Error) => void): void { * ensure('callback', callback, isFunction()); * } * * @returns {Predicate} */ export declare function isFunction(): Predicate<(...args: any[]) => any>; //# sourceMappingURL=isFunction.d.ts.map