/**
 * ZKTeco iclock ADMS protocol endpoints.
 *
 * ZKTeco device firmware hardcodes these three paths — they are NOT configurable:
 *   GET  /iclock/cdata?SN=<serial>&options=all  → device init/heartbeat
 *   POST /iclock/cdata?SN=<serial>&table=ATTLOG → attendance record push
 *   GET  /iclock/getrequest?SN=<serial>         → pending command poll
 *
 * Configure the device with:
 *   Server Address: <your-server-ip-or-domain>
 *   Server Port:    3333  (or 80/443 in production via nginx)
 */
import type { FastifyInstance } from 'fastify';
export default function iclockRoutes(fastify: FastifyInstance): Promise<void>;
//# sourceMappingURL=iclock.routes.d.ts.map