import { Position } from '../../core/positions.cjs'; /** * Place this function to check and ensure the code where invoked must never * reach. This function is ueful to identify issues with the code by identifying * the code path which must have never reached. * @param x The object which needs to be asserted as never */ declare function assertNever(x: any, pos?: Position): never; export { assertNever as default };