type Route = {
    method: string;
    path: string;
    body: string;
    params: string;
    query: string;
    files: string;
    response: string;
};
type Options = {
    folder: string;
    name: RegExp;
    output?: string;
};
export declare const generateRoutes: (globalPrefix: string, options: Options) => Promise<Route[] | undefined>;
export {};
