import React from 'react'; import { UseFieldApiConfig } from '@data-driven-forms/react-form-renderer'; import { XORComboboxProps as MagmaComboboxProps } from 'react-magma-dom/dist/components/Combobox'; export declare type ComboboxProps = MagmaComboboxProps & UseFieldApiConfig; interface ComboOption { label: string; value: string; name: string; } export declare const Combobox: React.MemoExoticComponent<(props: ComboboxProps) => React.JSX.Element>; export {};