import { default as React } from 'react'; export type PriceDisplayProps = { description: string; prefix?: string; price: number; initialPrice?: number; label?: string; period: 'none' | 'month' | 'year' | 'quarter'; }; export declare const PriceDisplay: React.FC<{ items: Array; }>;