import React from 'react'; import { BubbleNode, BubbleProps } from './Bubble'; export declare type BubbleSelectProps = Omit & { onSelect?: (bubble: BubbleNode) => void; onDeselect?: (bubble: BubbleNode) => void; onRemove?: (bubble: BubbleNode) => void; bubbleSize?: number; allowsMultipleSelection?: boolean; children: React.ReactNode; style?: object; width?: number; height?: number; removeOnLongPress?: boolean; longPressDuration?: number; backgroundColor?: string; maxSelectedItems?: number; initialSelection?: string[]; }; declare const BubbleSelect: ({ onSelect, onDeselect, style, allowsMultipleSelection, children, bubbleSize, onRemove, removeOnLongPress, longPressDuration, width, height, backgroundColor, maxSelectedItems, initialSelection, ...bubbleProps }: BubbleSelectProps) => JSX.Element; export default BubbleSelect;