import type { AsyncActionOptions } from "./asyncActionTypes"; /** * Polling manager interface for async actions */ export interface PollingManager Promise> { createStartPollingMethod: (wrapperFn: T) => (...args: Parameters) => void; createStopPollingMethod: () => () => void; stopPolling: () => void; } /** * Creates a polling manager for async actions with configurable intervals */ export declare function createPollingManager Promise>(options?: AsyncActionOptions): PollingManager; //# sourceMappingURL=asyncActionPolling.d.ts.map