//#region src/is-object-index.d.ts /** * Checks if the given value is an object index. * * @param value - The value to check. * @returns Returns `true` if the value is an object index, otherwise `false`. */ declare function isObjectIndex(value: PropertyKey): value is string | number | symbol; //#endregion export { isObjectIndex }; //# sourceMappingURL=is-object-index.d.mts.map