import React from 'react';
import type { AsyncApiDefinition, ApiItem } from '../types';
type OperationSectionProps = {
    operations: ApiItem[];
    definition: AsyncApiDefinition;
    type: 'send' | 'receive';
    id: string;
};
export declare const OperationSection: React.MemoExoticComponent<({ operations, definition, type, id }: OperationSectionProps) => import("react/jsx-runtime").JSX.Element>;
export {};
