export = isArguments; /** * Returns `true` when `object` is an `arguments` object, `false` otherwise * @alias module:samsam.isArguments * @param {*} object - The object to examine * @returns {boolean} `true` when `object` is an `arguments` object */ declare function isArguments(object: any): boolean;