import type { ObjectWithNullableProperty } from "../definition/type/object-with-nullable-property.mjs";
import type { Test } from "../definition/type/test.mjs";
declare function hasNullableProperty<O extends object, K extends string | symbol>(value: O, property: K): value is ObjectWithNullableProperty<O, K, unknown>;
declare function hasNullableProperty<O extends object, K extends string | symbol, T>(value: O, property: K, test: Test<T>): value is ObjectWithNullableProperty<O, K, T>;
export { hasNullableProperty };
