/** * Check path if it is exist * @param filePaths path array of file */ export declare const getFilePath: (filePaths: string[]) => string; export declare const uploadFile: (origin: string, zipData: any) => Promise; export declare const getRouterChildren: () => ({ icon: string; name: string; path: string; children?: undefined; } | { icon: string; name: string; children: ({ icon: string; name: string; path: string; } | null)[]; path?: undefined; })[]; export declare const getCwdPath: (relativePath: any) => string;