/** * A no op, or no-op, function for no operation * * @remarks Please see {@link https://dev.to/praneshpsg239/noop-in-javascript-478h | this article} for more information. * * @param _params - An optional parameter passed to the function. It can be anything (but is not used in any way) */ export declare const noop: (_params?: unknown) => void;