1import { Source } from '../wonka_types'; 2 3export const combine: <A, B>(a: Source<A>) => (b: Source<B>) => Source<[A, B]>;