/** * Checks if a file exists at the specified path. * @param filePath - The path to the file. * @returns A promise that resolves to `true` if the file exists, otherwise `false`. */ export declare function existsFile(filePath: string): boolean;