import { Observable } from "./Observable.js"; /** * Creates an observable that calls a function at a regular interval and emits * the value returned by that function. */ export declare function cron(interval: number, callback: () => T | Promise): Observable; //# sourceMappingURL=cron.d.ts.map