/**
 * Get the filename without extension for a given path
 * @param path to a file
 * @returns filename without extension
 */
export declare function getFileName(path: string): string;
/**
 * Removes a file or directory if it exists
 * @param path to a file or directory
 */
export declare function rm(path: string): void;
/**
 * Creates a folder, if it does not exist
 * @remark not real mkdir -p! only one level! To have multi-level we should use the package node-mkdirp
 * @param path folder path
 */
export declare function mkdirp(path: string): void;
