import type { BusGateway } from './bus/gateway.js'; import type { Dispatcher } from './notifier/dispatcher.js'; import type { PollResult } from './types.js'; export interface PollDeps { gateway: BusGateway; dispatcher: Dispatcher; } interface PollOptions { now?: Date; dryRun?: boolean; } export declare function pollActiveAlarms(deps: PollDeps, options?: PollOptions): Promise; export declare function startScheduler(deps: PollDeps): () => void; export {}; //# sourceMappingURL=scheduler.d.ts.map