//#region src/functions/noop/noop.d.ts
/**
 * A no-operation function that returns `undefined` for any input.
 * @param args Any arguments.
 * @example
 * ```ts
 * noop() // undefined
 * noop(1, 2, 3) // undefined
 * ```
 */
declare function noop(...args: readonly unknown[]): void;
//#endregion
export { noop as t };
//# sourceMappingURL=noop-bRmTspGB.d.ts.map