/** * Determines whether or not the given value is a truthy value, also acts as a typeguard. * @param value - value to check * @returns true if given a truthy value, false otherwise * ```typescript * pipe( * ['a', false, '', null, 0, 4], * Arrays.filter(isTruthy) // -> ['a', 4] * ); * ``` */ export declare const isTruthy: (value: T | null | undefined) => value is T;