export type FileTree = { type: "file"; name: string; srcName?: string; } | { type: "dir"; name: string; children: FileTree[]; }; export declare function normalizePath(p: string): string;