import type { error_o_error_T, error_o_T } from '../error_o/index.js' import type { HttpError } from '../http_error/index.js' export declare const not_found__default__message:string export declare function not_found_error_( message?:string, error_o?:error_o_T ):NotFoundError /** * Throws a Not Found error (HTTP 401) * @example * not_found__throw(error_o) // Not Found */ export declare function not_found__throw( message?:string, error_o?:error_o_T ):void export declare class NotFoundError extends HttpError implements error_o_error_T { }