import type { Entries } from 'type-fest'; import type { Arrayable } from './typescript'; export declare const entriesOf: (arr: T) => Entries; export declare const getProp: (obj: Record, path: Arrayable, defaultValue?: any) => { value: T; }; export declare const hasOwn: (val: object, key: string | symbol) => key is never; export declare const keysOf: (arr: T) => (keyof T)[];