import { FormEventHandler, FunctionComponent } from 'react';
export interface TransferOperationProps {
    className?: string;
    leftArrowText?: string;
    rightArrowText?: string;
    moveToLeft?: FormEventHandler<any>;
    moveToRight?: FormEventHandler<any>;
    leftActive?: boolean;
    rightActive?: boolean;
}
declare const Operation: FunctionComponent<TransferOperationProps>;
export default Operation;
