/**
 * Inserts values at the start of the iterable
 */
export declare function insert<T>(...values: T[]): (source: AsyncIterable<T>) => AsyncGenerator<T, void, unknown>;
