/// declare type Price = { id: string; unit_amount?: number | null; currency: string; recurring?: { interval_count: number; interval: string; } | null; recurring_interval?: string | null; recurring_interval_count?: number | null; }; export declare type PricePropertyValueProps = { children: string | Price | undefined | null; }; export declare function PricePropertyValue({ children }: PricePropertyValueProps): JSX.Element | null; export {};