/** * Gets the difference between two arrays. */ declare function without(array: readonly T[], itemsToExclude: Iterable): Exclude[]; export { without as w };