/** * Check if an object has a specific property in a type-safe manner * that meets the eslint rule `@typescript-eslint/no-prototype-builtins`. * @param obj * @param prop * @returns */ export declare function hasOwnProperty, K extends PropertyKey>(obj: T, prop: K): obj is T & Record;