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