export declare namespace DirUtils {
    function splitPath(filePath: string): string[];
    function cleanPath(filePath: string): string;
    function convertWindowsToUnix(filePath: string): string;
}
