type ItemListProps = { label: string; inputType: "text" | "url" | "number" | "password"; classNames?: { label?: string; input?: string; }; currentlist: string | string[]; fieldName: string; handleItemListUpdate: (fieldName: string, newList: string[]) => void; }; declare function ItemList(props: ItemListProps): import("react/jsx-runtime").JSX.Element; export default ItemList;