import type { ObjectPlain } from '@flex-development/tutils'; import type { IGreaseOptions } from "../interfaces"; /** * @file Utility - cacheOptions * @module grease/utils/cacheOptions */ /** * Caches application options after validating. * * @async * @param {IGreaseOptions | ObjectPlain} [args={}] - Application options * @return {Promise} Promise containing validated options */ declare const cacheOptions: (args: IGreaseOptions | ObjectPlain) => Promise; export default cacheOptions;