export declare const libPath: string;
export declare const tmpPath: string;
/**
 * Checks if the dir exists at the provided path. If it doesn't exist simply makes a new Directory
 *
 * **Its a synchronous function
 * @param path A path like string
 */
export declare function checkExistsAndMakeDir(path: string): void;
