import { UnknownException } from "@odg/exception"; import type { RequestInterface, ResponseInterface } from "../interfaces"; import { MessageResponse } from "./MessageResponse"; export declare class MessageUnknownException extends UnknownException { message: string; code?: string | undefined; request?: RequestInterface | undefined; response?: ResponseInterface | undefined; constructor(message: string, preview?: unknown, code?: string | undefined, request?: RequestInterface | undefined, response?: ResponseInterface | undefined); getMessageResponse(): MessageResponse | undefined; } //# sourceMappingURL=MessageUnknownException.d.ts.map