import type { EventPollerOptions } from '../types.js'; interface EventPollerHandle { readonly start: () => void; readonly stop: () => void; } declare function createEventPoller(options: EventPollerOptions): EventPollerHandle; export { createEventPoller };