import type { Hono } from "hono"; import { Effect, Layer } from "effect"; import type { HonoContext } from "./app.js"; import { PasswordService } from "../auth/services/PasswordService.js"; import { TokenService } from "../auth/services/TokenService.js"; import { UserRepository } from "../auth/services/UserRepository.js"; import { SessionRepository } from "../auth/services/SessionRepository.js"; import { AuditLogService } from "../auth/services/AuditLogService.js"; import { AuthService } from "../auth/services/AuthService.js"; export declare const AppLayer: Layer.Layer; export declare const setupRoutes: (app: Hono) => Effect.Effect; //# sourceMappingURL=routes.d.ts.map