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