import React from 'react'; import { OperationProps, OperationState } from './iTransfer'; declare function noop(): void; declare class TransferOperation extends React.Component { static defaultProps: { leftArrowText: string; rightArrowText: string; moveToLeft: typeof noop; moveToRight: typeof noop; }; getOperations: () => { newOperations: Partial>; buttonType: string[]; }; render(): JSX.Element; } export default TransferOperation;