import { SectionLayout } from '../../components/Section'; import { Operation as OperationType } from '../../types/asyncapi/Operation'; interface OperationsProps { operations: Record; selectedKey?: string | null; onSelectKey?: (key: string | null) => void; /** Which collapsed section of the selected operation search navigated to. */ focusSection?: string | null; layout?: SectionLayout; } export default function Operations({ operations, selectedKey, onSelectKey, focusSection, layout }: OperationsProps): import("react").JSX.Element | null; export {};