import { Entries } from './typeUtils'; export declare function getKeys>(obj: T): Extract[]; export declare function objectEntries>(obj: T): Entries; export declare function hasProperty

(obj: any, prop: P): obj is { [K in P]: unknown; };