/**
 * This method returns `undefined`.
 *
 * @since 2.3.0
 * @category Util
 * @example
 *
 * ```js
 * times(2, noop);
 * // => [undefined, undefined]
 * ```
 */
export function noop(): void;
export default noop;
