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