import { TypeGuard, TypeGuardInverted } from '../types'; export declare const isFalse: (value: T) => value is TypeGuard; export declare const isNotFalse: (value: T) => value is TypeGuardInverted; export declare const isPropertyFalse: (property: K) => (value: T) => boolean; export declare const isPropertyNotFalse: (property: K) => (value: T) => boolean; export declare const arePropertiesFalse: (...properties: K[]) => (value: T) => boolean; export declare const arePropertiesNotFalse: (...properties: K[]) => (value: T) => boolean;