import { type JSX } from 'react'; import type { LineItem } from '@commercelayer/sdk'; import type { ChildrenFunction } from '../../typings/index'; export interface TLineItemCode extends Omit { lineItem: LineItem; skuCode: string; } interface Props extends Omit { children?: ChildrenFunction; type?: 'sku_code' | 'bundle_code'; } export declare function LineItemCode({ type, children, ...p }: Props): JSX.Element; export default LineItemCode;