/** * A no-operation function that does nothing. * * @returns {void} - * * @since 1.0.0 * * @example * * noop(); // does nothing */ declare const noop: () => void; export default noop;