@commercelayer/react-components
Version:
The Official Commerce Layer React Components
7 lines (6 loc) • 414 B
TypeScript
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;