import React from 'react'; interface BaseStates { checkedList: Array; } interface RightDropFieldProps { students: any; rightPagetions: any; checkedChange: (item: Array, field?: any) => void; columns: Array; onClildrenChange: (item: Array) => void; rightAllChecked: Array; checkedList?: Array; checked?: any; showRightNum: boolean; propsRightPagetions: any; dragHolderMessag: string; } declare class RightDropField extends React.Component { constructor(props: any); shouldComponentUpdate(nextProps: any, nextState: any): boolean; componentDidUpdate(prevProps: any): void; checkedChange: (field: any, checked: any) => void; render(): any; } export default RightDropField;