import { type PropsWithoutRef, type JSX } from 'react'; import type { ChildrenFunction } from '../../typings/index'; import type { LineItem } from '@commercelayer/sdk'; interface ChildrenProps extends Omit { handleRemove: (event: React.MouseEvent) => void; label?: string; lineItem?: LineItem; } interface Props extends PropsWithoutRef> { children?: ChildrenFunction; label?: string; } export declare function LineItemRemoveLink(props: Props): JSX.Element; export default LineItemRemoveLink;