import type { FunctionComponent } from 'react'; import type { ComboBoxProps, NoChildrenProp } from '@pega/cosmos-react-core'; import type { ItemType } from '@pega/cosmos-react-rte/lib/components/DynamicContentEditor/DynamicContentEditor.types'; export interface FieldSelectorProps extends NoChildrenProp { itemList: ItemType[]; updateSelection: (selectedItem: ItemType, label: ComboBoxProps['label']) => void; defaultSelection?: ItemType; } declare const FieldSelector: FunctionComponent>; export default FieldSelector; //# sourceMappingURL=FieldSelector.d.ts.map