import { Hono } from 'hono'; import type { Logging } from '@fgv/ts-utils'; import type { IHttpStorageProviderFactory } from './provider'; /** * Options for creating storage routes. * @public */ export interface ICreateStorageRoutesOptions { readonly providers: IHttpStorageProviderFactory; readonly logger?: Logging.ILogger; } /** * Builds storage routes for a Hono app. * @public */ export declare function createStorageRoutes(options: ICreateStorageRoutesOptions): Hono; //# sourceMappingURL=routes.d.ts.map