import type { ReactElement } from 'react'; import type { ComboboxSelectionProps } from './ComboboxSelection'; export interface ComboboxSelectionsProps { children?: ReactElement[] | ReactElement; onRemoveAll?: () => void; placeholder?: string; } declare const ComboboxSelections: ({ children, onRemoveAll, placeholder, }: ComboboxSelectionsProps) => JSX.Element; export default ComboboxSelections;