import * as React from 'react'; import { TemplateProps } from 'react-draggable-list'; import { IBaseUIList } from './models/IBaseUIList'; import { IBaseUIItem } from './models'; type DraggableCompoProps = React.Component>>; export interface IDraggableListAdaptatorProps extends IBaseUIList { itemComponentProps: any; } export declare function DraggableListAdaptator>(props: IDraggableListAdaptatorProps): React.JSX.Element; export {};