import type { FastifyInstance } from "fastify"; import type { AuthService } from "../modules/auth/service.js"; import type { DrizzleExecutor } from "../modules/drizzle.js"; import type { SecretProtector } from "../modules/integrations/secrets.js"; import type { WebhookUrlPolicy } from "../modules/integrations/ssrf.js"; import { type IntegrationRouteCallbacks } from "../modules/integrations/types.js"; export declare function registerIntegrationRoutes(app: FastifyInstance, auth: AuthService, executor: DrizzleExecutor, secretProtector: SecretProtector, webhookUrlPolicy: WebhookUrlPolicy, now: () => Date, callbacks: IntegrationRouteCallbacks): void; //# sourceMappingURL=integrations.d.ts.map