import * as React from 'react'; import type { ResponseModel } from '../../services/models'; export interface ResponseViewProps { response: ResponseModel; operationHash?: string; } export declare const ResponseView: ({ response, operationHash }: ResponseViewProps) => React.ReactElement;