import type { ObjectPlain } from '@flex-development/tutils'; import type { IGreaseOptions } from './interfaces'; /** * @file Main Method * @module grease/main */ /** * Integrates `grease` lifecycles and the [`standard-version`][1] library. * * [1]: https://github.com/conventional-changelog/standard-version * * @async * @param {IGreaseOptions | ObjectPlain} [args={}] - Application arguments * @return {Promise} Empty promise when complete */ declare const main: (args?: IGreaseOptions | ObjectPlain) => Promise; export default main;