type ItemRowProps = { inputType: "text" | "url" | "number" | "password"; item: string; index: number; handleItemUpdate: (newItem: string, index: number) => void; handleItemDelete: (index: number) => void; handleBlur: (index: number) => void; isDuplicateItem?: boolean; disableDelete?: boolean; disabled?: boolean; classNames: { input: string; }; }; declare function ItemRow(props: ItemRowProps): import("react/jsx-runtime").JSX.Element; export default ItemRow;