import * as React from 'react';
export interface TransferOperationProps {
    className?: string;
    leftArrowText?: string;
    rightArrowText?: string;
    upArrowText?: string;
    downArrowText?: string;
    moveToLeft?: React.MouseEventHandler<HTMLButtonElement>;
    moveToRight?: React.MouseEventHandler<HTMLButtonElement>;
    moveUp?: React.FormEventHandler<any>;
    moveDown?: React.FormEventHandler<any>;
    leftActive?: boolean;
    rightActive?: boolean;
    style?: React.CSSProperties;
    upActive?: boolean;
    downActive?: boolean;
}
export default class Operation extends React.Component<TransferOperationProps, any> {
    render(): JSX.Element;
}
