import * as React from 'react'; export type ItemSelectionTestProps = { id: string; className?: string; customClassNames?: Array; /** Selected contact id, written by the item-selection picker in the panel. */ contactId?: string; /** Related contact names — the picker stores names directly (`itemField: NAME`). */ relatedContactNames?: Array; }; declare const ItemSelectionTest: React.FC; export default ItemSelectionTest;