/**
 * Queues the first item it receives then terminates the stream.
 *
 * @group Transformers
 * @example
 * ```
 * --1--X
 *
 * first()
 *
 * --1--|
 * ```
 */
export declare function first<T>(): TransformStream<T, T>;
