import { TypeGuard, TypeGuardInverted } from '../types'; export declare const isNull: (value: T) => value is TypeGuard; export declare const isNotNull: (value: T) => value is TypeGuardInverted; export declare const isPropertyNull: (property: K) => (value: T) => boolean; export declare const isPropertyNotNull: (property: K) => (value: T) => boolean; export declare const arePropertiesNull: (...properties: K[]) => (value: T) => boolean; export declare const arePropertiesNotNull: (...properties: K[]) => (value: T) => boolean;