import { TreeSourceType } from '../tree'; import React from 'react'; import { TransferProps } from '@alifd/next/types/transfer'; interface propType extends TransferProps { treeSource?: TreeSourceType[]; checkable?: boolean; width?: string | number; height?: string | number; } interface stateType { orignData: TreeSourceType[]; selectData: TreeSourceType[]; checkedKeys: string[]; } export default class LpTransfer extends React.Component { static defaultProps: { width?: string | number; height?: string | number; }; constructor(props: any); getallNode: (treeData: any, callBack: any) => void; handleChange: (...rest: any[]) => void; onSelect: (selectedKeys: any, extra: any) => void; onCheck: (checkedKeys: any) => void; onCancel: (selectedKeys: any) => void; render(): JSX.Element; } export {};