export declare function createAsyncStream<T>(): AsyncGenerator<T> & {
    push(item: T): void;
    end(): void;
};
