import { type Asyncable } from '../asyncerator';
/**
 * Drop the results of an asyncable into /dev/null.
 */
export default function <T>(iterator: Asyncable<T>): Promise<void>;
