import { In, Out, Predicate } from "../_interfaces"; import { Property } from "../Property"; export declare const skipWhile: CurriedSkipWhile; export interface CurriedSkipWhile { (f: Predicate | Property, observable: In): Out; (f: Predicate | Property): (observable: In) => Out; }