import { ConnectResponseError } from "./request-handlers"; export type HandlerNotFoundResponseErrorType = "handlerNotFound"; export declare const handlerNotFoundResponseErrorKey: HandlerNotFoundResponseErrorType; export type HandlerNotFoundResponseError = ConnectResponseError & { errorKey: HandlerNotFoundResponseErrorType; reason: "No handler for command"; }; //# sourceMappingURL=handler-not-found-error.d.ts.map