/** * A no-operation function that returns `undefined` for any input. */ declare function noop(...args: readonly unknown[]): void; export { noop as n };