/** * Returns the full directory of a given path. * @param url - The path to get the directory of. * @returns The full directory of the path. */ export declare function getDirectory(url: string): string; /** * Joins two paths together taking into account trailing slashes and "./" prefixes. * @param path1 - The first path to join. * @param path2 - The second path to join. * @returns The joined path. */ export declare function joinPaths(path1: string, path2: string): string;