import { FontOptionsInterface, ProductViewItemInterface, } from '../index'; interface ProductViewTextInterface extends ProductViewItemInterface { color: string; font: FontOptionsInterface; text: string; } export default ProductViewTextInterface;