import React from 'react';
import type { AsyncApiMessage } from '../types';
type MessageSectionProps = {
    messages: {
        key: string;
        value: AsyncApiMessage;
    }[];
    id: string;
};
export declare const MessageSection: React.MemoExoticComponent<({ messages, id }: MessageSectionProps) => import("react/jsx-runtime").JSX.Element>;
export {};
