export interface EventStream { iterable: AsyncIterable; push: (value: T) => void; close: () => void; } export declare function createEventStream(): EventStream;