export interface ComboboxSelectionProps { children: string; onRemove?: () => void; } declare const ComboboxSelection: ({ children, onRemove }: ComboboxSelectionProps) => JSX.Element; export default ComboboxSelection;