import * as RT from "fp-ts/ReaderTask"; import type { Cache } from "../../infrastructure/cache"; import type { Database } from "../../infrastructure/database"; import type { HttpServer } from "../../infrastructure/http"; interface Dependencies { readonly httpServer: HttpServer; readonly database: Database; readonly cache: Cache; } export declare const bindHttpRoutes: () => RT.ReaderTask; export {};