export interface EnumerationProps { id: string; items: string[]; loadMoreRows?: (params: { startIndex: number; stopIndex: number; }) => Promise; onChange: (items: string[]) => void; onCreate?: (value: string) => Promise; onEdit?: (value: string) => Promise; onImport?: (data: string[]) => void; onRemove?: (entries: string[]) => Promise; title: string; } export interface UiEnumerationItem { value: string; isToAnimate: boolean; } export declare enum EnumerationMode { CREATE = "create", EDIT = "edit", VIEW = "view" }