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