/** * 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`. */ export declare function isObjectIndex(value: PropertyKey): value is string | number | symbol;