import { Hono } from 'hono/quick'; import { type Cache } from '../cache/index.js'; type InitServerOptions = { cache: Cache; port: number; debug: boolean; }; type InitializedServer = { app: Hono; start: () => void; }; declare function initServer(options: InitServerOptions): InitializedServer; export { initServer, type InitServerOptions };