import { TypeGuard, TypeGuardInverted } from '../types'; export declare const isTrue: (value: T) => value is TypeGuard; export declare const isNotTrue: (value: T) => value is TypeGuardInverted; export declare const isPropertyTrue: (property: K) => (value: T) => boolean; export declare const isPropertyNotTrue: (property: K) => (value: T) => boolean; export declare const arePropertiesTrue: (...properties: K[]) => (value: T) => boolean; export declare const arePropertiesNotTrue: (...properties: K[]) => (value: T) => boolean;