import { MessageObject } from '../../types/asyncapi/MessageObject'; interface MessageDetailsProps { message: MessageObject; expanded: boolean; onToggleExpanded: () => void; paddingX?: string; /** "payload" | "headers" when search navigated here for that schema specifically. */ focusSection?: string | null; } export declare function MessageDetails({ message, expanded, onToggleExpanded, paddingX, focusSection, }: MessageDetailsProps): import("react").JSX.Element; export {};