import Observable from "./observable"; import { Property } from "./observable"; export declare type Accumulator = (acc: Out, value: In) => Out; /** @hidden */ export default function scan(src: Observable, seed: Out, f: Accumulator): Property;