import * as React from 'react'; export interface TransferOperationProps { className?: string; leftArrowText?: string; rightArrowText?: string; moveToLeft?: React.MouseEventHandler; moveToRight?: React.MouseEventHandler; leftActive?: boolean; rightActive?: boolean; style?: React.CSSProperties; disabled?: boolean; } declare const Operation: ({ disabled, moveToLeft, moveToRight, leftArrowText, rightArrowText, leftActive, rightActive, className, style, }: TransferOperationProps) => JSX.Element; export default Operation;