import { type JSX } from 'react'; import type { ChildrenFunction } from '../../typings/index'; interface ChildrenProps extends Omit { quantity: number; text: string; } interface Props extends Omit { children?: ChildrenFunction; text?: string; } export declare function LineItemsEmpty(props: Props): JSX.Element | null; export default LineItemsEmpty;