import { RouteModule, RouteInfo } from 'vite-plugin-api-routes/handler';

type ApplyRouter = (route: RouteModule) => void;
type ApplyRouters = (apply: ApplyRouter) => void;
declare const routeBase: string;
declare const routers: RouteInfo[];
declare const endpoints: string[];
declare const applyRouters: ApplyRouters;

export { type ApplyRouter, type ApplyRouters, applyRouters, endpoints, routeBase, routers };
