UNPKG

@commercelayer/react-components

Version:
7 lines (6 loc) 414 B
import { type JSX } from 'react'; import type { PropsType } from '../../utils/PropsType'; import type { baseOrderPricePropTypes } from '../../typings/index'; export type BaseOrderPriceProps = PropsType<typeof baseOrderPricePropTypes, unknown> & Omit<JSX.IntrinsicElements['span'], 'children' | 'ref'>; export declare function BaseOrderPrice(props: BaseOrderPriceProps): JSX.Element; export default BaseOrderPrice;