import React__default from 'react';

interface ComboboxFieldProps {
    items: string[];
    value: string[];
    onChange: (value: string[]) => void;
    placeholder?: string;
    className?: string;
    classNamePopover?: string;
}
declare const ComboboxField: React__default.FC<ComboboxFieldProps>;

export { ComboboxField };
