import { OperatorFunction, UnaryFunction } from 'rxjs'; /** * Binds the provided unary function to an emitted value as its only argument. * Emits a parameter less function. * * @param func a function to bind the emitted value to * @typeParam I type of the source observable * @typeParam O return type of the provided function * @category Operator */ export declare function bind(func: UnaryFunction): OperatorFunction O>; //# sourceMappingURL=bind.d.ts.map