import { E } from '@mosteast/e'; /** * Project base error * * All custom errors should extend this error. */ declare class Not_implemented extends E { status_code: number; constructor(msg?: string); } export { Not_implemented };