import { Observable } from 'rxjs'; import { ExtendedPollConfig } from '../types/config.type'; /** * Creates a polling observable that repeatedly executes the source. * Uses interval or repeat strategy and composes pause behavior from config. * * @param source$ - The source observable to poll * @param extendedConfig - Extended poll configuration * @returns Observable that emits values from the source with configured polling and pause */ export declare function createPoller$(source$: Observable, extendedConfig: ExtendedPollConfig): Observable; //# sourceMappingURL=create-poller.d.ts.map