import React from 'react'; import { QuantityProps } from './types'; declare const QuantityComponent: ({ name, description, value }: QuantityProps) => React.JSX.Element; export default QuantityComponent;