import { type JSX } from 'react'; import { type TypeAccepted } from '../../utils/getLineItemsCount'; import type { ChildrenFunction } from '../../typings/index'; interface ChildrenProps extends Omit { quantity: number; } interface Props extends Omit { children?: ChildrenFunction; typeAccepted?: TypeAccepted[]; } export declare function LineItemsCount(props: Props): JSX.Element; export default LineItemsCount;