//#region src/function/noop.d.ts/**
* `noop(...args)`
*
* A no-operation function that accepts any number of arguments and returns void.
*
* ```ts
* noop(); // undefined
*/declarefunctionnoop(..._args: readonlyunknown[]): void;
//#endregionexport { noop };