UNPKG

@commercelayer/react-components

Version:
9 lines (8 loc) 330 B
import type { PriceProps } from '../prices/Price'; import type { JSX } from "react"; export type PTemplateProps = { formattedAmount?: string | null; formattedCompare?: string | null; } & Omit<PriceProps, 'children'>; export declare function PriceTemplate(props: PTemplateProps): JSX.Element; export default PriceTemplate;