import { AppPricingBillingPeriod } from "./AppPricingCardsContainer"; export type AppPricingPriceProps = Readonly<{ value?: string; originalValue?: string; priceSubLabel?: string; billingPeriod?: AppPricingBillingPeriod | undefined; perMonthLabel?: string; perYearLabel?: string; billedAnnuallyLabel?: string; showYearlyPriceAsMonthly?: boolean; disabled?: boolean; /** Show a skeleton in place of the price while it resolves (children — e.g. the selector — still render). */ isLoading?: boolean; /** The catalog fetch settled with no price (endpoint failed) → show a dash, not a skeleton. */ isError?: boolean; variant?: "default" | "dark"; children?: React.ReactNode; }>; export declare const AppPricingPrice: ({ value, originalValue, priceSubLabel, billingPeriod, perMonthLabel, perYearLabel, billedAnnuallyLabel, showYearlyPriceAsMonthly, disabled, isLoading, isError, variant, children, }: AppPricingPriceProps) => import("react").JSX.Element; //# sourceMappingURL=AppPricingPrice.d.ts.map