import React from 'react';
import { type RendererProps } from 'jamis-core';
import type { OperationSchema } from '../types';
interface OperationProps extends RendererProps, Omit<OperationSchema, 'type' | 'className'> {
}
export declare class OperationField extends React.Component<OperationProps, object> {
    static propsList: Array<string>;
    render(): JSX.Element;
}
export declare class OperationFieldRenderer extends OperationField {
}
export {};
