import { AnyObject } from "./types"; export declare const hasOwn: (obj: T, key: PropertyKey) => key is keyof T; export declare const isObject: (value: unknown) => value is AnyObject; export declare const isUndefined: (value: unknown) => value is undefined;