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