/** * Joins the paths so that there is always a single '/' character between the paths * @param paths an array of paths * @return {string} the paths combined together */ export declare function pathJoin(...paths: string[]): string; /** * Returns true if the string is either null or empty */ export declare function isBlank(str: string): boolean;