1import { Operator } from '../wonka_types'; 2 3export const takeWhile: <A>(f: (x: A) => boolean) => Operator<A, A>;