UNPKG

@commercelayer/react-components

Version:
17 lines (16 loc) 470 B
import { type ReactNode, type JSX } from 'react'; type Props = { children: ReactNode; title?: string; showName?: boolean; titleTagElement?: keyof JSX.IntrinsicElements; titleClassName?: string; } & Omit<JSX.IntrinsicElements['div'], 'children'> & ({ skuOptionId: string; showAll?: never; } | { skuOptionId?: never; showAll: true; }); export declare function LineItemOptions(props: Props): JSX.Element; export default LineItemOptions;