/** * Check if a value is a function. * * @param value the value to check. */ export declare function isFunction(value: unknown | null | undefined): value is Function;