import type { FastifyInstance } from 'fastify'; export interface SchedulerRoutesConfig { /** * Base URL of the local znapi instance. * @default "http://127.0.0.1:8080" */ znapiBaseUrl?: string; } /** * Register /scheduler/* passthrough routes on the provided Fastify instance. * Call this inside `addHealthRoutes()`. */ export declare function addSchedulerRoutes(fastify: FastifyInstance, config: SchedulerRoutesConfig): void; //# sourceMappingURL=scheduler-routes.d.ts.map