export declare class RouteMap { map: Map; constructor(map: any); standardPath(path: any): any; relativePath(path: any, base: any): any; buildRenameFunc(): (...args: any[]) => any; getKeys(): string[]; getHandler(name: any): (...args: any[]) => any; route(path: any): any[]; } export declare const buildFS: ( routeMap: RouteMap, props: any ) => { fs: any; getRowObject: () => any; };