import { Transducer } from "./transducer"; export declare class FirstTransducer implements Transducer { async_(iterable: AsyncIterable): AsyncIterable; sync(iterable: Iterable): Iterable; } export declare function first(): FirstTransducer;