import { MessageObject } from '../types/asyncapi/MessageObject'; import { OperationReply } from '../types/asyncapi/OperationReply'; interface IReplyProps { requestMessages: MessageObject[]; reply: OperationReply; isSend: boolean; operationId: string | null; } export declare function Reply({ requestMessages, reply, isSend, operationId }: IReplyProps): import("react").JSX.Element; export {};