import { Hono } from "hono"; import type { AppEnv } from "../../index.ts"; import type { S3Config } from "../../types.ts"; export declare function createStorageRouter(opts: { originalDatabase: string | undefined; mountDb: (path: string) => void; unmountDb: () => void; dbOpenError?: string; dbOpenFailedPath?: string; settingsDir: string; storageDir?: string; s3?: S3Config; }): Hono; //# sourceMappingURL=router.d.ts.map