import type { IGreaseOptions } from "../interfaces"; /** * @file Lifecycles - depchecker * @module grease/lifecycles/depchecker */ /** * Checks if required dependencies are installed. An exception will be thrown if * any dependencies are not found. * * Required Dependencies: * * - GitHub CLI - [`gh`][1] * * [1]: https://cli.github.com/manual * * @async * @param {IGreaseOptions} [options={}] - Application options * @return {Promise} Empty promise * @throws {Exception} */ declare const Depchecker: (options?: IGreaseOptions) => Promise; export default Depchecker;