import { SourcePath } from '../common/types';
export declare function ensureDirectoryExists(filePath: string): void;
export declare function ensureFileExists(filePath: string): void;
/**
 * Traverse up a file path and search for the given file name.
 *
 * @param start File or folder path to start searching from
 * @param fileName File name to search for
 */
export declare function searchUp(start: SourcePath, fileName: string): string | undefined;
