declare type routes = {
    path: string;
    name: string;
    component?: Function;
    children?: routes;
}[];
export declare function getRoutes(opts?: {
    dirPath: string;
}): routes;
export {};
