import type { FilesystemTools } from '../../execution/FilesystemTools';
import type { string_filename } from '../../types/string_filename';
/**
 * Checks if the file exists
 *
 * @private within the repository
 */
export declare function isFileExisting(filename: string_filename, fs: FilesystemTools): Promise<boolean>;
