import type { TProductExpanded } from '@blocklet/payment-types';
import type { PricingRenderProps } from '../types';
export type PricingItemProps = {
    productId: string;
    quantity: number;
    priceId: string | undefined;
    children?: (pricing: PricingRenderProps, product?: TProductExpanded | undefined) => React.ReactNode;
};
declare function PricingItem({ productId, quantity, children, priceId }: PricingItemProps): import("react").JSX.Element;
export default PricingItem;
