import { FalsyType, TypeGuard, TypeGuardInverted } from '../types'; export declare type Truthy = TypeGuardInverted; export declare type Falsy = TypeGuard; export declare const isTruthy: (value: T) => value is TypeGuardInverted; export declare const isFalsy: (value: T) => value is TypeGuard; export declare const isPropertyTruthy: (property: K) => (value: T) => boolean; export declare const isPropertyFalsy: (property: K) => (value: T) => boolean; export declare const arePropertiesTruthy: (...properties: K[]) => (value: T) => boolean; export declare const arePropertiesFalsy: (...properties: K[]) => (value: T) => boolean;