import { TypeGuard, TypeGuardInverted } from '../types'; export declare const isUndefined: (value: T) => value is TypeGuard; export declare const isNotUndefined: (value: T) => value is TypeGuardInverted; export declare const isPropertyUndefined: (property: K) => (value: T) => boolean; export declare const isPropertyNotUndefined: (property: K) => (value: T) => boolean; export declare const arePropertiesUndefined: (...properties: K[]) => (value: T) => boolean; export declare const arePropertiesNotUndefined: (...properties: K[]) => (value: T) => boolean;