import { type ReactNode, type JSX } from 'react'; type Props = { children: ReactNode; title?: string; showName?: boolean; titleTagElement?: keyof JSX.IntrinsicElements; titleClassName?: string; } & Omit & ({ skuOptionId: string; showAll?: never; } | { skuOptionId?: never; showAll: true; }); export declare function LineItemOptions(props: Props): JSX.Element; export default LineItemOptions;