import { JRPCExceptionAbstract } from "./abstracts"; import { TypeId } from "../types"; import { JRPCErrorInline } from "../interfaces"; /** * Method Not Found Exception * * @extends JRPCExceptionAbstract * @licence MIT * @author Mahsum UREBE */ export declare class MethodNotFoundException extends JRPCExceptionAbstract { constructor(id?: TId, error?: JRPCErrorInline, jsonrpc?: "2.0"); }