import { Transducer } from "./transducer";
export declare class IdentityTransducer implements Transducer {
async_(iterable: AsyncIterable): AsyncIterable;
sync(iterable: Iterable): Iterable;
}
export declare function identity(): IdentityTransducer;
export declare const transducer: typeof identity;