/** * Returns the directory portion of a path string. * Strips trailing slashes, then takes everything up to the last slash. */ export declare function dirname(path: string): string; /** * Joins all given path segments, then normalizes the result. */ export declare function join(...parts: string[]): string;