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