/** * Checks whether any of the {@link keys} are in the {@link map} * @param map The map to check * @param keys The keys to find in the map * @returns `true` if at least one of the {@link keys} is in the {@link map}, `false` otherwise. */ declare function hasAtLeastOneKeyInMap(map: ReadonlyMap, keys: readonly Key[]): boolean; export { hasAtLeastOneKeyInMap };