import { CartItemGroups, CartLevels } from '@open-tender/types'; import { Handlers, ItemSelectionsProps, ItemOptionProps, ErrorMessageProps } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const ItemSelections: ({ handlers, groups, levels, isIncomplete, children, ItemOptionView, ErrorMessageView }: { handlers: Handlers; groups: CartItemGroups; levels: CartLevels; isIncomplete: boolean; children: (props: ItemSelectionsProps) => ReactNode; ItemOptionView: (props: ItemOptionProps) => ReactNode; ErrorMessageView: (props: ErrorMessageProps) => ReactNode; }) => React.ReactNode; export default ItemSelections;