//#region src/exists.d.ts
/**
 * Check if a file exists
 *
 * @param filePath - The file path to check
 * @returns An indicator specifying if the file exists
 */
declare function existsSync(filePath: string): boolean;
/**
 * Check if a file exists
 *
 * @param filePath - The file path to check
 * @returns An indicator specifying if the file exists
 */
declare function exists(filePath: string): Promise<boolean>;
//#endregion
export { exists, existsSync };
//# sourceMappingURL=exists.d.mts.map