import { FilterAsyncFn, FilterFn } from "./filter"; import { AsyncIterableLike } from "../async-like"; export declare function except(iterable: Iterable, callbackFn: FilterFn, thisValue?: This, parent?: Parent): Iterable; export declare function asyncExcept(iterable: AsyncIterableLike, callbackFn: FilterAsyncFn, thisValue?: This, parent?: Parent): AsyncIterable;