import { Application as ExpressApp } from "express";
type Route = {
    method: string;
    path: string;
};
export default function provideRoutes(app: ExpressApp, exlcudePath: string): Route[];
export {};
