import type { Middleware } from 'koa'; export declare const API_EXPLORER_ROUTE_PATH = "/explorer"; export declare const API_EXPLORER_INDEX_PATH = "/explorer/index.html"; export declare const API_EXPLORER_METADATA_PATH = "/explorer/metadata"; interface ApiExplorerOptions { publicDir?: string; } declare const apiExplorer: (options?: ApiExplorerOptions) => Middleware; export default apiExplorer;