import { BaseARC0027Error } from "../errors"; import BaseResponseMessage from './BaseResponseMessage'; import type { IResponseMessageWithError } from "../types"; interface IOptions { error: BaseARC0027Error; id: string; reference: string; requestId: string; } export default class ResponseMessageWithError extends BaseResponseMessage implements IResponseMessageWithError { readonly error: BaseARC0027Error; constructor({ error, id, reference, requestId }: IOptions); } export {}; //# sourceMappingURL=ResponseMessageWithError.d.ts.map