import React, { ReactNode, SyntheticEvent } from 'react'; import '@vonage/vwc-chips'; import '@vonage/vwc-chips/vwc-chip-set'; /** * @param {ChipType | undefined} type */ declare const VwcChipSet: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; onSelection?: ((event: SyntheticEvent) => void) | undefined; type?: any; }) => JSX.Element; export default VwcChipSet;