/**
 * ZKLib TCP/IP poller — connects to ZKTeco devices on the local network
 * using the ZKTeco SDK protocol (default port 4370) and pulls attendance logs.
 *
 * Runs as a BullMQ repeatable job per registered ZKLIB device.
 */
import type { FastifyInstance } from 'fastify';
export interface ZkPollJobData {
    deviceId: string;
}
export declare function pollZkDevice(fastify: FastifyInstance, deviceId: string): Promise<void>;
//# sourceMappingURL=zklib.poller.d.ts.map