import { ElasticPathBundleProduct } from "../types"; export interface BundlePriceInfo { currentPrice?: string; isFixedPrice: boolean; displayProduct: ElasticPathBundleProduct; displayComponents: Record; } /** * Calculates the current bundle price and determines display information */ export declare function calculateBundlePrice(bundleProduct?: ElasticPathBundleProduct, configuredBundle?: { data?: ElasticPathBundleProduct; }): BundlePriceInfo; /** * Formats price display text based on pricing type and configuration state */ export declare function formatPriceDisplay(currentPrice?: string, isConfiguring?: boolean, isFixedPrice?: boolean): string;