export declare type StreamTestCase = StreamTestCaseImpl; declare type StreamTestCaseImpl> = Readonly<{ name: string; expectedOutput: O; run: (tick: number) => Promise; preview: (tick: number) => void; }>; export {};