/** * Determines whether the given function is empty. * * @param {Function} aFunc - The function to check. * @returns {boolean} - Returns true if it's empty, otherwise false */ export function isEmptyFunctionCli(aFunc: Function): boolean; export default isEmptyFunctionCli;