import { Operation as OperationInterface } from '../../types/asyncapi/Operation'; interface OperationProps { op: OperationInterface; id: string | null; /** Which collapsed section search navigated to, e.g. `binding:kafka`. */ focusSection?: string | null; } export default function Operation({ op, id, focusSection }: OperationProps): import("react").JSX.Element; export {};