import GreaseOptions from "../models/grease-options.model"; import type { PackageFileResult } from "../types"; /** * @file Utility - readPackageFiles * @module grease/utils/readPackageFiles */ /** * Resolves [updaters][1] from `options.packageFiles` and retrieves the current * package version. * * [1]: https://github.com/conventional-changelog/standard-version#bumpfiles-packagefiles-and-updaters * * @async * @param {GreaseOptions} [options={}] - Application options * @return {Promise} Promise containing current pakcage * version and boolean indicating if package is private or not * @throws {Exception} */ declare const readPackageFiles: (options?: GreaseOptions) => Promise; export default readPackageFiles;