import React from 'react'; interface PriceProps { price: string; qty: number; } export declare function Price({ price, qty }: PriceProps): React.JSX.Element; export {};