import { Observable } from 'rxjs'; /** * Repeats the source observable with a delay between each repetition. * * @param source$ - The source observable to repeat * @param getTime - Function that returns the delay in milliseconds before the next repetition * @returns Observable that repeats the source with the given delay */ export declare function repeatWith$(source$: Observable, getTime: () => number): Observable; //# sourceMappingURL=repeat-with.d.ts.map