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