import type { FC } from 'react'; import './style'; export type ItemInfoProps = { item_id?: string; item_name?: string; item_quantity?: number; item_image?: string; visibleConfig?: Record; }; declare const ItemInfo: FC; export default ItemInfo;