import type { PriceProps } from '../prices/Price'; import type { JSX } from "react"; export type PTemplateProps = { formattedAmount?: string | null; formattedCompare?: string | null; } & Omit; export declare function PriceTemplate(props: PTemplateProps): JSX.Element; export default PriceTemplate;