/** * Join all given a sequence of `paths`,then normalizes the resulting path. * @param paths to be joined and normalized */ export declare function posixJoin(...paths: string[]): string; /** * Join all given a sequence of `paths`,then normalizes the resulting path. * @param paths to be joined and normalized */ export declare function windowsJoin(...paths: string[]): string;