import React from 'react';
type TSelectItem = Array<{
    id: number | string;
    name: string;
    name_unaccent?: string;
}>;
export interface ComboboxProps {
    className?: string;
    label?: string;
    id?: string;
    listOptions: TSelectItem;
    defaultValue?: TSelectItem;
    placeholder?: string;
    onChange?: any;
    error?: boolean;
    selectFieldPosition?: 'top' | 'bottom';
    optionHeight?: number;
    disabled?: boolean;
    errorMessageCustom?: string;
    errorType?: 'required-field' | 'duplicate-field' | 'custom-message';
    helpText?: string;
    isAllOptions?: boolean;
}
export declare const PHXCombobox: ({ className, defaultValue, disabled, error, id, label, listOptions, onChange, optionHeight, placeholder, selectFieldPosition, errorType, errorMessageCustom, helpText, isAllOptions, }: ComboboxProps) => React.JSX.Element;
export {};
