import React from 'react';
import type { AsyncApiOperation, AsyncApiDefinition } from '../types';
type OperationProps = {
    operation?: AsyncApiOperation;
    dataSectionId: string;
    definition?: AsyncApiDefinition;
    headerRow?: React.ReactNode;
    id?: string;
    showDivider?: boolean;
};
export declare const Operation: React.MemoExoticComponent<({ operation, dataSectionId, definition, headerRow, id, showDivider }: OperationProps) => import("react/jsx-runtime").JSX.Element | null>;
export {};
