diff --git a/deno_dist/stream/internal.ts b/deno_dist/stream/internal.ts
index dd7ce6778..3b5f79953 100644
--- a/deno_dist/stream/internal.ts
+++ b/deno_dist/stream/internal.ts
@@ -6,11 +6,11 @@ export * from './stream/interface.ts';
 export * from './stream/streamable.ts';
 export * from './stream/stream-source.ts';
 
-export * from './async-stream/utils.ts';
-export * as AsyncStreamCustom from './async-stream/async-stream-custom.ts';
-
-export * from './async-stream/interface.ts';
 export * from './async-stream/async-fast-iterator.ts';
 export * from './async-stream/async-fast-iterable.ts';
 export * from './async-stream/async-streamable.ts';
+
+export * as AsyncStreamCustom from './async-stream/async-stream-custom.ts';
+
+export * from './async-stream/interface.ts';
 export * from './async-stream/async-stream-source.ts';
diff --git a/packages/stream/src/internal.ts b/packages/stream/src/internal.ts
index e7e6af5b9..e826d667a 100644
--- a/packages/stream/src/internal.ts
+++ b/packages/stream/src/internal.ts
@@ -6,11 +6,11 @@ export * from './stream/interface';
 export * from './stream/streamable';
 export * from './stream/stream-source';
 
-export * from './async-stream/utils';
-export * as AsyncStreamCustom from './async-stream/async-stream-custom';
-
-export * from './async-stream/interface';
 export * from './async-stream/async-fast-iterator';
 export * from './async-stream/async-fast-iterable';
 export * from './async-stream/async-streamable';
+
+export * as AsyncStreamCustom from './async-stream/async-stream-custom';
+
+export * from './async-stream/interface';
 export * from './async-stream/async-stream-source';