import type { Poller, PollerCallback, PollerOptions } from "./types"; declare function poller(folderPath: string, cb: PollerCallback): void; declare function poller(folderPath: string, options: PollerOptions, cb: PollerCallback): void; declare function poller(folderPath: string, options?: PollerOptions): Promise; export default poller;