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