1 | import * as React from 'react';
|
2 | import type { DirectionType } from '../config-provider';
|
3 | export interface TransferOperationProps {
|
4 | className?: string;
|
5 | leftArrowText?: string;
|
6 | rightArrowText?: string;
|
7 | moveToLeft?: React.MouseEventHandler<HTMLButtonElement>;
|
8 | moveToRight?: React.MouseEventHandler<HTMLButtonElement>;
|
9 | leftActive?: boolean;
|
10 | rightActive?: boolean;
|
11 | style?: React.CSSProperties;
|
12 | disabled?: boolean;
|
13 | direction?: DirectionType;
|
14 | oneWay?: boolean;
|
15 | }
|
16 | declare const Operation: ({ disabled, moveToLeft, moveToRight, leftArrowText, rightArrowText, leftActive, rightActive, className, style, direction, oneWay, }: TransferOperationProps) => JSX.Element;
|
17 | export default Operation;
|