import React from "react"; interface BundlePriceProps { currentPrice?: string; isConfiguring: boolean; isFixedPrice: boolean; className?: string; } export declare function BundlePrice({ currentPrice, isConfiguring, isFixedPrice, className }: BundlePriceProps): React.JSX.Element; export {};