import React from 'react'; export interface IListItemProps { name: string; index: number; item: string; edit: (item: string) => void; swap: (fromIndex: number, toIndex: number) => void; remove: () => void; itemLabel?: string; placeholder?: string; disabled?: boolean; } export declare const MemoizedListItem: React.NamedExoticComponent; export default MemoizedListItem;