/** * Checks if the value is either null or undefined. If so, throws a Not Found * HTTP error. Otherwise, returns the value. The parameter `statusCode` can be * used to modify the error status code. */ export declare function valueOrError(value: T | undefined | null, statusCode?: number): T; //# sourceMappingURL=valueOrError.d.ts.map