import type { NegateTypeGuardFn } from './types'; /** * Calls any guard * @example * ```ts * import { negateGuard, isNull } from 'type-guard-helpers' * const test = [] as string | null; * if (negateGuard(isNull, test)) { * test; // string * } * ``` * @category Type Guard Composer */ declare const isTruthy: NegateTypeGuardFn; export { isTruthy };