1import { Source, Operator } from '../wonka_types'; 2 3export const switchMap: <A, B>(f: (value: A) => Source<B>) => Operator<A, B>;