import { Arrayable } from "./typescript.js"; import "./index.js"; import { hasOwn } from "@vue/shared"; //#region ../../packages/utils/objects.d.ts declare const keysOf: (arr: T) => Array; declare const entriesOf: (arr: T) => [keyof T, T[keyof T]][]; declare const getProp: (obj: Record, path: Arrayable, defaultValue?: any) => { value: T; }; //#endregion export { entriesOf, getProp, hasOwn, keysOf };