UNPKG

414 BTypeScriptView Raw
1import { FormEventHandler, FunctionComponent } from 'react';
2export interface TransferOperationProps {
3 className?: string;
4 leftArrowText?: string;
5 rightArrowText?: string;
6 moveToLeft?: FormEventHandler<any>;
7 moveToRight?: FormEventHandler<any>;
8 leftActive?: boolean;
9 rightActive?: boolean;
10}
11declare const Operation: FunctionComponent<TransferOperationProps>;
12export default Operation;