import * as React from 'react'; import * as PropTypes from 'prop-types'; import List, { TransferListProps } from './list'; import Search from './search'; import { TransferListBodyProps } from './renderListBody'; export { TransferListProps } from './list'; export { TransferOperationProps } from './operation'; export { TransferSearchProps } from './search'; export declare type TransferDirection = 'left' | 'right'; export interface RenderResultObject { label: React.ReactElement; value: string; } export declare type RenderResult = React.ReactElement | RenderResultObject | string | null; declare type TransferRender = (item: TransferItem) => RenderResult; export interface TransferItem { key: string; title?: string; description?: string; disabled?: boolean; [name: string]: any; } export interface ListStyle { direction: TransferDirection; } export interface TransferProps { prefixCls?: string; className?: string; disabled?: boolean; dataSource: TransferItem[]; targetKeys?: string[]; selectedKeys?: string[]; render?: TransferRender; onChange?: (targetKeys: string[], direction: string, moveKeys: string[]) => void; onSelectChange?: (sourceSelectedKeys: string[], targetSelectedKeys: string[]) => void; style?: React.CSSProperties; listStyle: ((style: ListStyle) => React.CSSProperties) | React.CSSProperties; operationStyle?: React.CSSProperties; titles?: string[]; operations?: string[]; showSearch?: boolean; filterOption?: (inputValue: string, item: TransferItem) => boolean; searchPlaceholder?: string; notFoundContent?: React.ReactNode; locale?: {}; footer?: (props: TransferListProps) => React.ReactNode; body?: (props: TransferListProps) => React.ReactNode; rowKey?: (record: TransferItem) => string; onSearchChange?: (direction: TransferDirection, e: React.ChangeEvent) => void; onSearch?: (direction: TransferDirection, value: string) => void; lazy?: {} | boolean; onScroll?: (direction: TransferDirection, e: React.SyntheticEvent) => void; children?: (props: TransferListBodyProps) => React.ReactNode; showSelectAll?: boolean; } export interface TransferLocale { titles: string[]; notFoundContent: string; searchPlaceholder: string; itemUnit: string; itemsUnit: string; } declare class Transfer extends React.Component { static List: typeof List; static Operation: ({ disabled, moveToLeft, moveToRight, leftArrowText, rightArrowText, leftActive, rightActive, className, style, }: import("./operation").TransferOperationProps) => JSX.Element; static Search: typeof Search; static defaultProps: { dataSource: never[]; locale: {}; showSearch: boolean; listStyle: () => void; }; static propTypes: { prefixCls: PropTypes.Requireable; disabled: PropTypes.Requireable; dataSource: PropTypes.Validator; render: PropTypes.Requireable<(...args: any[]) => any>; targetKeys: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; height: PropTypes.Requireable; style: PropTypes.Requireable; listStyle: PropTypes.Requireable; operationStyle: PropTypes.Requireable; className: PropTypes.Requireable; titles: PropTypes.Requireable; operations: PropTypes.Requireable; showSearch: PropTypes.Requireable; filterOption: PropTypes.Requireable<(...args: any[]) => any>; searchPlaceholder: PropTypes.Requireable; notFoundContent: PropTypes.Requireable; locale: PropTypes.Requireable; body: PropTypes.Requireable<(...args: any[]) => any>; footer: PropTypes.Requireable<(...args: any[]) => any>; rowKey: PropTypes.Requireable<(...args: any[]) => any>; lazy: PropTypes.Requireable; }; static getDerivedStateFromProps(nextProps: TransferProps): { sourceSelectedKeys: string[]; targetSelectedKeys: string[]; } | null; separatedDataSource: { leftDataSource: TransferItem[]; rightDataSource: TransferItem[]; } | null; constructor(props: TransferProps); getSelectedKeysName(direction: TransferDirection): "sourceSelectedKeys" | "targetSelectedKeys"; getTitles(transferLocale: TransferLocale): string[]; getLocale: (transferLocale: TransferLocale, renderEmpty: (componentName?: string | undefined) => React.ReactNode) => { notFoundContent: any; searchPlaceholder: string; titles: string[]; itemUnit: string; itemsUnit: string; }; moveTo: (direction: import("../collapse/Collapse").ExpandIconPosition) => void; moveToLeft: () => void; moveToRight: () => void; onItemSelectAll: (direction: import("../collapse/Collapse").ExpandIconPosition, selectedKeys: string[], checkAll: boolean) => void; handleSelectAll: (direction: import("../collapse/Collapse").ExpandIconPosition, filteredDataSource: TransferItem[], checkAll: boolean) => void; handleLeftSelectAll: (filteredDataSource: TransferItem[], checkAll: boolean) => void; handleRightSelectAll: (filteredDataSource: TransferItem[], checkAll: boolean) => void; onLeftItemSelectAll: (selectedKeys: string[], checkAll: boolean) => void; onRightItemSelectAll: (selectedKeys: string[], checkAll: boolean) => void; handleFilter: (direction: import("../collapse/Collapse").ExpandIconPosition, e: React.ChangeEvent) => void; handleLeftFilter: (e: React.ChangeEvent) => void; handleRightFilter: (e: React.ChangeEvent) => void; handleClear: (direction: import("../collapse/Collapse").ExpandIconPosition) => void; handleLeftClear: () => void; handleRightClear: () => void; onItemSelect: (direction: import("../collapse/Collapse").ExpandIconPosition, selectedKey: string, checked: boolean) => void; handleSelect: (direction: import("../collapse/Collapse").ExpandIconPosition, selectedItem: TransferItem, checked: boolean) => void; handleLeftSelect: (selectedItem: TransferItem, checked: boolean) => void; handleRightSelect: (selectedItem: TransferItem, checked: boolean) => void; onLeftItemSelect: (selectedKey: string, checked: boolean) => void; onRightItemSelect: (selectedKey: string, checked: boolean) => void; handleScroll: (direction: import("../collapse/Collapse").ExpandIconPosition, e: React.SyntheticEvent) => void; handleLeftScroll: (e: React.SyntheticEvent) => void; handleRightScroll: (e: React.SyntheticEvent) => void; handleSelectChange(direction: TransferDirection, holder: string[]): void; handleListStyle: (listStyle: React.CSSProperties | ((style: ListStyle) => React.CSSProperties), direction: import("../collapse/Collapse").ExpandIconPosition) => React.CSSProperties; separateDataSource(): { leftDataSource: TransferItem[]; rightDataSource: TransferItem[]; }; renderTransfer: (transferLocale: TransferLocale) => JSX.Element; render(): JSX.Element; } export default Transfer;