import type { ComponentPropsWithoutRef, ElementType } from 'react'; /** @publicDocs */ interface CartLineQuantityBaseProps { /** An HTML tag or React Component to be rendered as the base element wrapper. The default is `span`. */ as?: ComponentGeneric; } export type CartLineQuantityProps = CartLineQuantityBaseProps & Omit, keyof CartLineQuantityBaseProps>; /** * The `` component renders a `span` (or another element / component that can be customized by the `as` prop) with the cart line's quantity. * * It must be a descendent of a `` component, and uses the `useCartLine()` hook internally. * @publicDocs */ export declare function CartLineQuantity(props: CartLineQuantityProps): JSX.Element; export {};