import { Func } from '../typings/types'; /** * A function that always returns `undefined`. Any passed in parameters are ignored. * * @return {Undefined} * @example * * nothing(); //=> undefined */ export declare const nothing: Func; export default nothing;