import type { Config } from '../../types/index.js'; import type { IStatusPollingAdapter } from './IStatusPollingAdapter.js'; import { TrackingService } from '../tracking/TrackingService.js'; /** * Factory for creating the appropriate polling adapter based on config.pollingProvider. */ export declare class StatusPollingAdapterFactory { /** * Create the polling adapter specified by config. * Throws descriptive errors if the selected adapter is misconfigured. */ static create(config: Config, trackingService: TrackingService): IStatusPollingAdapter; } //# sourceMappingURL=StatusPollingAdapterFactory.d.ts.map