import { TypeGuardWithReturnType, TypeGuardInverted } from '../types'; export declare const isZero: (value: 0 | T) => value is TypeGuardWithReturnType; export declare const isNotZero: (value: T) => value is TypeGuardInverted<0, T>; export declare const isPropertyZero: (property: K) => (value: T) => boolean; export declare const isPropertyNotZero: (property: K) => (value: T) => boolean; export declare const arePropertiesZero: (...properties: K[]) => (value: T) => boolean; export declare const arePropertiesNotZero: (...properties: K[]) => (value: T) => boolean;