import type { TypeGuardFn } from './types'; /** * A Type Guard that checks if the given value type is equal to `object` and is not null * * @category Type Guard */ declare const isObject: TypeGuardFn; export { isObject };