import * as React from 'react'; import { IProps, AllObject } from '../utils'; interface IMProps extends IProps { data?: AllObject[]; } export default class ArrayType extends React.Component { defaultData: AllObject; constructor(props: any); sortArray: (data: any[], index: number, end: number) => any[]; onDragEnd: (result: any) => void; onAddClick: () => void; onRemove: (n: any) => void; getChildrenToRender: () => JSX.Element; render(): JSX.Element; } export {};