/** * No-Operation (noop) function that returns the value passed to it when called. * * @param val - Value to return */ declare function noopreturn(val?: T): T | undefined; export { noopreturn, noopreturn as default };