import * as React from 'react'; import { SortListItemType, RenderItemType } from './SortListItem'; export interface SortListWrapProps { list: SortListItemType[]; renderItem?: RenderItemType; valueKey: string; labelKey: string; removable?: string; disabled?: boolean; isObj: boolean; } declare const SortListWrap: React.FC; export default SortListWrap; declare const SortListWrapMemo: React.NamedExoticComponent; export { SortListWrapMemo };